Module supertokens_python.recipe.passwordless.types

Expand source code
# Copyright (c) 2021, VRAI Labs and/or its affiliates. All rights reserved.
#
# This software is licensed under the Apache License, Version 2.0 (the
# "License") as published by the Apache Software Foundation.
#
# You may not use this file except in compliance with the License. You may
# obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from typing import Union, List


class User:
    def __init__(self, user_id: str, email: Union[str, None], phone_number: Union[str, None], time_joined: int):
        self.user_id = user_id
        self.email = email
        self.phone_number = phone_number
        self.time_joined = time_joined


class DeviceCode:
    def __init__(self, code_id: str, time_created: str, code_life_time: int):
        self.code_id = code_id
        self.time_created = time_created
        self.code_life_time = code_life_time


class DeviceType:
    def __init__(self,
                 pre_auth_session_id: str,
                 failed_code_input_attempt_count: int,
                 codes: List[DeviceCode],
                 email: Union[str, None] = None,
                 phone_number: Union[str, None] = None
                 ):
        self.pre_auth_session_id = pre_auth_session_id
        self.failed_code_input_attempt_count = failed_code_input_attempt_count
        self.codes = codes
        self.email = email
        self.phone_number = phone_number

Classes

class DeviceCode (code_id: str, time_created: str, code_life_time: int)
Expand source code
class DeviceCode:
    def __init__(self, code_id: str, time_created: str, code_life_time: int):
        self.code_id = code_id
        self.time_created = time_created
        self.code_life_time = code_life_time
class DeviceType (pre_auth_session_id: str, failed_code_input_attempt_count: int, codes: List[DeviceCode], email: Optional[str] = None, phone_number: Optional[str] = None)
Expand source code
class DeviceType:
    def __init__(self,
                 pre_auth_session_id: str,
                 failed_code_input_attempt_count: int,
                 codes: List[DeviceCode],
                 email: Union[str, None] = None,
                 phone_number: Union[str, None] = None
                 ):
        self.pre_auth_session_id = pre_auth_session_id
        self.failed_code_input_attempt_count = failed_code_input_attempt_count
        self.codes = codes
        self.email = email
        self.phone_number = phone_number
class User (user_id: str, email: Optional[str], phone_number: Optional[str], time_joined: int)
Expand source code
class User:
    def __init__(self, user_id: str, email: Union[str, None], phone_number: Union[str, None], time_joined: int):
        self.user_id = user_id
        self.email = email
        self.phone_number = phone_number
        self.time_joined = time_joined