Initial commit

This commit is contained in:
Yaser
2026-08-13 19:50:53 +03:30
commit 38084458fe
879 changed files with 95198 additions and 0 deletions

View File

@@ -0,0 +1,73 @@
module API
module V2
module Entities
class WithdrawLimit < API::V2::Entities::Base
expose(
:id,
documentation:{
type: Integer,
desc: 'Unique withdraw limit table identifier in database.'
}
)
expose(
:group,
documentation:{
type: String,
desc: 'Member group for define withdraw limits.'
}
)
expose(
:kyc_level,
documentation:{
type: String,
desc: 'KYC level for define withdraw limits.'
}
)
expose(
:kind,
documentation:{
type: String,
desc: 'kind for define deposit limits.'
}
)
expose(
:limit_24_hour,
documentation:{
type: BigDecimal,
desc: '24 hours withdraw limit.'
}
)
expose(
:limit_1_month,
documentation:{
type: BigDecimal,
desc: '1 month withdraw limit.'
}
)
expose(
:created_at,
format_with: :iso8601,
documentation: {
type: String,
desc: 'Withdraw limit table created time in iso8601 format.'
}
)
expose(
:updated_at,
format_with: :iso8601,
documentation: {
type: String,
desc: 'Withdraw limit table updated time in iso8601 format.'
}
)
end
end
end
end