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