Files
x-stake/app/graphql/inputs/create_deposit_order_attributes_input.rb
2021-09-05 22:32:15 -03:00

7 lines
194 B
Ruby

# frozen_string_literal: true
module Inputs
class CreateDepositOrderAttributesInput < Types::BaseInputObject
argument :amount_cents, Integer, "Amount to be paid", required: true
end
end