113 lines
2.4 KiB
Ruby
113 lines
2.4 KiB
Ruby
# encoding: UTF-8
|
|
# frozen_string_literal: true
|
|
|
|
module API
|
|
module V2
|
|
module Admin
|
|
module Entities
|
|
class Wallet < API::V2::Entities::Base
|
|
expose(
|
|
:id,
|
|
documentation:{
|
|
type: Integer,
|
|
desc: 'Unique wallet identifier in database.'
|
|
}
|
|
)
|
|
|
|
expose(
|
|
:name,
|
|
documentation: {
|
|
type: String,
|
|
desc: 'Wallet name.'
|
|
}
|
|
)
|
|
|
|
expose(
|
|
:kind,
|
|
documentation: {
|
|
type: String,
|
|
desc: "Kind of wallet 'deposit','fee','hot','warm' or 'cold'."
|
|
}
|
|
)
|
|
|
|
expose(
|
|
:currency_ids,
|
|
as: :currencies,
|
|
documentation: {
|
|
is_array: true,
|
|
desc: 'Wallet currency code.',
|
|
example: -> { ::Currency.visible.codes }
|
|
}
|
|
)
|
|
|
|
expose(
|
|
:address,
|
|
documentation: {
|
|
type: String,
|
|
desc: 'Wallet address.'
|
|
}
|
|
)
|
|
|
|
expose(
|
|
:gateway,
|
|
documentation: {
|
|
type: String,
|
|
desc: 'Wallet gateway.'
|
|
}
|
|
)
|
|
|
|
expose(
|
|
:max_balance,
|
|
documentation: {
|
|
type: BigDecimal,
|
|
desc: 'Wallet max balance.'
|
|
}
|
|
)
|
|
|
|
expose(
|
|
:balance,
|
|
documentation: {
|
|
type: BigDecimal,
|
|
desc: 'Wallet balance'
|
|
}
|
|
)
|
|
|
|
expose(
|
|
:blockchain_key,
|
|
documentation: {
|
|
type: String,
|
|
desc: 'Wallet blockchain key.'
|
|
}
|
|
)
|
|
|
|
expose(
|
|
:status,
|
|
documentation: {
|
|
type: String,
|
|
desc: 'Wallet status (active/disabled).'
|
|
}
|
|
)
|
|
|
|
expose(
|
|
:created_at,
|
|
format_with: :iso8601,
|
|
documentation: {
|
|
type: String,
|
|
desc: 'Wallet created time in iso8601 format.'
|
|
}
|
|
)
|
|
|
|
expose(
|
|
:updated_at,
|
|
format_with: :iso8601,
|
|
documentation: {
|
|
type: String,
|
|
desc: 'Wallet updated time in iso8601 format.'
|
|
}
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|