зеркало из
https://github.com/glebtv/yookassa.git
synced 2026-08-28 15:16:18 +03:00
13 строки
251 B
Ruby
13 строки
251 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "types"
|
|
|
|
module Yookassa
|
|
module Entity
|
|
class Recipient < Dry::Struct
|
|
attribute :account_id, Types::Coercible::Integer
|
|
attribute :gateway_id, Types::Coercible::Integer
|
|
end
|
|
end
|
|
end
|