Class: Moneta::Api::Requests::Profile::CreateClientProfileRequest
- Inherits:
-
CreateProfileRequest
- Object
- CreateProfileRequest
- Moneta::Api::Requests::Profile::CreateClientProfileRequest
- Defined in:
- lib/moneta/api/requests/profile/create_client_profile_request.rb
Overview
Запрос на создание пользователя с типом "клиент" в системе МОНЕТА.РУ. Request for creating a MONETA.RU client account.
Instance Method Summary collapse
-
#initialize ⇒ CreateClientProfileRequest
constructor
A new instance of CreateClientProfileRequest.
-
#profile ⇒ Moneta::Api::Types::Profile::Client
Данные создаваемого пользователя.
-
#profile_type ⇒ String
Тип пользователя.
Methods inherited from CreateProfileRequest
Methods included from DataMapper
Constructor Details
#initialize ⇒ CreateClientProfileRequest
Returns a new instance of CreateClientProfileRequest.
19 20 21 |
# File 'lib/moneta/api/requests/profile/create_client_profile_request.rb', line 19 def initialize @profile_type = 'client' end |
Instance Method Details
#profile ⇒ Moneta::Api::Types::Profile::Client
Returns Данные создаваемого пользователя. Данные представлены в виде "ключ-значение". / Ключи данных зависят от типа пользователя (ProfileType). / User profile information in the list of key-value pairs. / The list of supported keys depends on ProfileType.
17 |
# File 'lib/moneta/api/requests/profile/create_client_profile_request.rb', line 17 property :profile, type: Moneta::Api::Types::Profile::Client |
#profile_type ⇒ String
Returns Тип пользователя. Возможные значения: [client, organization] / Profile type. Valid values are: [client, organization].
11 |
# File 'lib/moneta/api/requests/profile/create_client_profile_request.rb', line 11 property :profile_type, read_only: true |