Class: DingSDK::Shared::CreateAuthenticationRequest
- Inherits:
-
Utils::FieldAugmented
- Object
- Utils::FieldAugmented
- DingSDK::Shared::CreateAuthenticationRequest
- Extended by:
- T::Sig
- Defined in:
- lib/ding_sdk/models/shared/createauthenticationrequest.rb
Instance Method Summary collapse
-
#initialize(customer_uuid: nil, phone_number: nil, app_realm: nil, app_version: nil, callback_url: nil, device_id: nil, device_model: nil, device_type: nil, ip: nil, is_returning_user: nil, os_version: nil, template_id: nil) ⇒ CreateAuthenticationRequest
constructor
A new instance of CreateAuthenticationRequest.
Methods included from MetadataFields
#field, #fields, included, #marshal_json, #marshal_single
Constructor Details
#initialize(customer_uuid: nil, phone_number: nil, app_realm: nil, app_version: nil, callback_url: nil, device_id: nil, device_model: nil, device_type: nil, ip: nil, is_returning_user: nil, os_version: nil, template_id: nil) ⇒ CreateAuthenticationRequest
Returns a new instance of CreateAuthenticationRequest.
41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/ding_sdk/models/shared/createauthenticationrequest.rb', line 41 def initialize(customer_uuid: nil, phone_number: nil, app_realm: nil, app_version: nil, callback_url: nil, device_id: nil, device_model: nil, device_type: nil, ip: nil, is_returning_user: nil, os_version: nil, template_id: nil) @customer_uuid = customer_uuid @phone_number = phone_number @app_realm = app_realm @app_version = app_version @callback_url = callback_url @device_id = device_id @device_model = device_model @device_type = device_type @ip = ip @is_returning_user = is_returning_user @os_version = os_version @template_id = template_id end |