Sha256: 8636f58c5e41eddd4bf2e3a156d306c361c82abf3c3de50e8d05ad26cca7fa16
Contents?: true
Size: 502 Bytes
Versions: 6
Compression:
Stored size: 502 Bytes
Contents
# frozen_string_literal: true module CoinsPaid module API class TakeAddress class Request < Dry::Struct attribute :foreign_id, Types::Coercible::String attribute :currency, Types::String attribute :convert_to, Types::String end class Response < Dry::Struct attribute :external_id, Types::Integer attribute :address, Types::String attribute :tag, Types::String.optional end PATH = 'addresses/take' end end end
Version data entries
6 entries across 6 versions & 1 rubygems