AuthenticationMethod
in package
implements
ModelInterface, ArrayAccess
AuthenticationMethod Class Doc Comment
Tags
Interfaces, Classes, Traits and Enums
- ModelInterface
- Interface abstracting model access.
- ArrayAccess
Table of Contents
- DISCRIMINATOR = null
- $attributeMap : array<string|int, string>
- Array of attributes where the key is the local name, and the value is the original name
- $container : array<string|int, mixed>
- Associative array for storing property values
- $getters : array<string|int, string>
- Array of attributes to getter functions (for serialization of requests)
- $setters : array<string|int, string>
- Array of attributes to setter functions (for deserialization of responses)
- $swaggerFormats : array<string|int, string>
- Array of property to format mappings. Used for (de)serialization
- $swaggerModelName : string
- The original name of the model.
- $swaggerTypes : array<string|int, string>
- Array of property to type mappings. Used for (de)serialization
- __construct() : mixed
- Constructor
- __toString() : string
- Gets the string presentation of the object
- attributeMap() : array<string|int, mixed>
- Array of attributes where the key is the local name, and the value is the original name
- getAuthenticationType() : string|null
- Gets authentication_type
- getLastProvider() : string|null
- Gets last_provider
- getLastTimestamp() : string|null
- Gets last_timestamp
- getModelName() : string
- The original name of the model.
- getters() : array<string|int, mixed>
- Array of attributes to getter functions (for serialization of requests)
- getTotalCount() : string|null
- Gets total_count
- listInvalidProperties() : array<string|int, mixed>
- Show all the invalid properties with reasons.
- offsetExists() : bool
- Returns true if offset exists. False otherwise.
- offsetGet() : mixed
- Gets offset.
- offsetSet() : void
- Sets value based on offset.
- offsetUnset() : void
- Unsets offset.
- setAuthenticationType() : $this
- Sets authentication_type
- setLastProvider() : $this
- Sets last_provider
- setLastTimestamp() : $this
- Sets last_timestamp
- setters() : array<string|int, mixed>
- Array of attributes to setter functions (for deserialization of responses)
- setTotalCount() : $this
- Sets total_count
- swaggerFormats() : array<string|int, mixed>
- Array of property to format mappings. Used for (de)serialization
- swaggerTypes() : array<string|int, mixed>
- Array of property to type mappings. Used for (de)serialization
- valid() : bool
- Validate all the properties in the model return true if all passed
Constants
DISCRIMINATOR
public
mixed
DISCRIMINATOR
= null
Properties
$attributeMap
Array of attributes where the key is the local name, and the value is the original name
protected
static array<string|int, string>
$attributeMap
= ['authentication_type' => 'authenticationType', 'last_provider' => 'lastProvider', 'last_timestamp' => 'lastTimestamp', 'total_count' => 'totalCount']
$container
Associative array for storing property values
protected
array<string|int, mixed>
$container
= []
$getters
Array of attributes to getter functions (for serialization of requests)
protected
static array<string|int, string>
$getters
= ['authentication_type' => 'getAuthenticationType', 'last_provider' => 'getLastProvider', 'last_timestamp' => 'getLastTimestamp', 'total_count' => 'getTotalCount']
$setters
Array of attributes to setter functions (for deserialization of responses)
protected
static array<string|int, string>
$setters
= ['authentication_type' => 'setAuthenticationType', 'last_provider' => 'setLastProvider', 'last_timestamp' => 'setLastTimestamp', 'total_count' => 'setTotalCount']
$swaggerFormats
Array of property to format mappings. Used for (de)serialization
protected
static array<string|int, string>
$swaggerFormats
= ['authentication_type' => null, 'last_provider' => null, 'last_timestamp' => null, 'total_count' => null]
$swaggerModelName
The original name of the model.
protected
static string
$swaggerModelName
= 'authenticationMethod'
$swaggerTypes
Array of property to type mappings. Used for (de)serialization
protected
static array<string|int, string>
$swaggerTypes
= ['authentication_type' => '?string', 'last_provider' => '?string', 'last_timestamp' => '?string', 'total_count' => '?string']
Methods
__construct()
Constructor
public
__construct([array<string|int, mixed> $data = null ]) : mixed
Parameters
- $data : array<string|int, mixed> = null
-
Associated array of property values initializing the model
Return values
mixed —__toString()
Gets the string presentation of the object
public
__toString() : string
Return values
string —attributeMap()
Array of attributes where the key is the local name, and the value is the original name
public
static attributeMap() : array<string|int, mixed>
Return values
array<string|int, mixed> —getAuthenticationType()
Gets authentication_type
public
getAuthenticationType() : string|null
Return values
string|null —getLastProvider()
Gets last_provider
public
getLastProvider() : string|null
Return values
string|null —getLastTimestamp()
Gets last_timestamp
public
getLastTimestamp() : string|null
Return values
string|null —getModelName()
The original name of the model.
public
getModelName() : string
Return values
string —getters()
Array of attributes to getter functions (for serialization of requests)
public
static getters() : array<string|int, mixed>
Return values
array<string|int, mixed> —getTotalCount()
Gets total_count
public
getTotalCount() : string|null
Return values
string|null —listInvalidProperties()
Show all the invalid properties with reasons.
public
listInvalidProperties() : array<string|int, mixed>
Return values
array<string|int, mixed> —invalid properties with reasons
offsetExists()
Returns true if offset exists. False otherwise.
public
offsetExists(int $offset) : bool
Parameters
- $offset : int
-
Offset
Return values
bool —offsetGet()
Gets offset.
public
offsetGet(int $offset) : mixed
Parameters
- $offset : int
-
Offset
Return values
mixed —offsetSet()
Sets value based on offset.
public
offsetSet(int $offset, mixed $value) : void
Parameters
- $offset : int
-
Offset
- $value : mixed
-
Value to be set
Return values
void —offsetUnset()
Unsets offset.
public
offsetUnset(int $offset) : void
Parameters
- $offset : int
-
Offset
Return values
void —setAuthenticationType()
Sets authentication_type
public
setAuthenticationType(string|null $authentication_type) : $this
Parameters
- $authentication_type : string|null
-
Indicates the type of authentication. Valid values are: PhoneAuth, STAN, ISCheck, OFAC, AccessCode, AgeVerify, or SSOAuth.
Return values
$this —setLastProvider()
Sets last_provider
public
setLastProvider(string|null $last_provider) : $this
Parameters
- $last_provider : string|null
-
The last provider that authenticated the user.
Return values
$this —setLastTimestamp()
Sets last_timestamp
public
setLastTimestamp(string|null $last_timestamp) : $this
Parameters
- $last_timestamp : string|null
-
The data and time the user last used the authentication method.
Return values
$this —setters()
Array of attributes to setter functions (for deserialization of responses)
public
static setters() : array<string|int, mixed>
Return values
array<string|int, mixed> —setTotalCount()
Sets total_count
public
setTotalCount(string|null $total_count) : $this
Parameters
- $total_count : string|null
-
The number of times the authentication method was used.
Return values
$this —swaggerFormats()
Array of property to format mappings. Used for (de)serialization
public
static swaggerFormats() : array<string|int, mixed>
Return values
array<string|int, mixed> —swaggerTypes()
Array of property to type mappings. Used for (de)serialization
public
static swaggerTypes() : array<string|int, mixed>
Return values
array<string|int, mixed> —valid()
Validate all the properties in the model return true if all passed
public
valid() : bool
Return values
bool —True if all properties are valid