Class: Moneta::Api::Requests::CreateProfileRequest
- Inherits:
-
Object
- Object
- Moneta::Api::Requests::CreateProfileRequest
- Includes:
- DataMapper
- Defined in:
- lib/moneta/api/requests/create_profile_request.rb
Overview
Запрос на создание пользователя в системе МОНЕТА.РУ. Request for creating a MONETA.RU account.
Direct Known Subclasses
Profile::CreateClientProfileRequest, Profile::CreateOrganizationProfileRequest
Instance Method Summary collapse
-
#profile ⇒ HashEntity
Данные создаваемого пользователя.
-
#profile_type ⇒ String
Тип пользователя.
-
#unit_id ⇒ Integer
ID родительского пользователя в системе МОНЕТА.РУ, к которому будет принадлежать создаваемый пользователь.
Methods included from DataMapper
Instance Method Details
#profile ⇒ HashEntity
Returns Данные создаваемого пользователя. Данные представлены в виде "ключ-значение". / Ключи данных зависят от типа пользователя (ProfileType). / User profile information in the list of key-value pairs. / The list of supported keys depends on ProfileType.
25 |
# File 'lib/moneta/api/requests/create_profile_request.rb', line 25 property :profile |
#profile_type ⇒ String
Returns Тип пользователя. Возможные значения: [client, organization] / Profile type. Valid values are: [client, organization].
19 |
# File 'lib/moneta/api/requests/create_profile_request.rb', line 19 property :profile_type |
#unit_id ⇒ Integer
Returns ID родительского пользователя в системе МОНЕТА.РУ, к которому будет принадлежать создаваемый пользователь. / Если поле не задано, то пользователь будет принадлежать тому пользователю, от имени которого работает web service. / Unique identifier of the parent MONETA.RU account that will own the new account. / If you ommit this element, the new account will belong to the the user who sends this request.
13 |
# File 'lib/moneta/api/requests/create_profile_request.rb', line 13 property :unit_id |