ssnikolay/moneta-api

View on GitHub
lib/moneta/api/responses/create_profile_response.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Moneta
  module Api
    module Responses
      class CreateProfileResponse
        include Moneta::Api::DataMapper

        # @return [String] Идентификатор профайла в системе МОНЕТА.РУ
        #   Profile id
        property :profile_id

        def fill(response)
          @profile_id = response
          self
        end
      end
    end
  end
end