Sha256: f4b5c5892f51f1da50f1544a188a933173775b4e11db26b88a3366b8ab8c46a6
Contents?: true
Size: 1.63 KB
Versions: 26
Compression:
Stored size: 1.63 KB
Contents
module Moneta module Api module Requests # Запрос на создание пользователя в системе МОНЕТА.РУ. # Request for creating a MONETA.RU account. class CreateProfileRequest include Moneta::Api::DataMapper # @return [Integer] 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. property :unit_id property :profile_id # @return [String] Тип пользователя. Возможные значения: [client, organization] # / Profile type. Valid values are: [client, organization] property :profile_type # @return [HashEntity] Данные создаваемого пользователя. Данные представлены в виде "ключ-значение". # / Ключи данных зависят от типа пользователя (ProfileType). # / User profile information in the list of key-value pairs. # / The list of supported keys depends on ProfileType. property :profile end end end end
Version data entries
26 entries across 26 versions & 1 rubygems