Class: FinchAPI::Models::Sandbox::PaymentCreateParams
- Includes:
- Type::RequestParameters
- Defined in:
- lib/finch-api/models/sandbox/payment_create_params.rb
Defined Under Namespace
Classes: PayStatement
Instance Attribute Summary collapse
- #end_date ⇒ String?
- #pay_statements ⇒ Array<FinchAPI::Models::Sandbox::PaymentCreateParams::PayStatement>?
- #start_date ⇒ String?
Attributes included from Type::RequestParameters
Instance Method Summary collapse
-
#initialize(end_date: nil, pay_statements: nil, start_date: nil, request_options: {}) ⇒ PaymentCreateParams
constructor
A new instance of PaymentCreateParams.
Methods included from Type::RequestParameters
Constructor Details
#initialize(end_date: nil, pay_statements: nil, start_date: nil, request_options: {}) ⇒ PaymentCreateParams
Returns a new instance of PaymentCreateParams.
6 |
# File 'lib/finch-api/models/sandbox/payment_create_params.rb', line 6 def initialize(end_date: nil, pay_statements: nil, start_date: nil, request_options: {}, **) = super |
Instance Attribute Details
#end_date ⇒ String?
14 |
# File 'lib/finch-api/models/sandbox/payment_create_params.rb', line 14 optional :end_date, String |
#pay_statements ⇒ Array<FinchAPI::Models::Sandbox::PaymentCreateParams::PayStatement>?
23 24 |
# File 'lib/finch-api/models/sandbox/payment_create_params.rb', line 23 optional :pay_statements, -> { FinchAPI::ArrayOf[FinchAPI::Models::Sandbox::PaymentCreateParams::PayStatement] } |
#start_date ⇒ String?
33 |
# File 'lib/finch-api/models/sandbox/payment_create_params.rb', line 33 optional :start_date, String |