Class: Increase::Models::CheckTransferCreateParams::PhysicalCheck
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::CheckTransferCreateParams::PhysicalCheck
- Defined in:
- lib/increase/models/check_transfer_create_params.rb
Defined Under Namespace
Modules: ShippingMethod Classes: MailingAddress, ReturnAddress
Instance Attribute Summary collapse
-
#attachment_file_id ⇒ String?
The ID of a File to be attached to the check.
-
#mailing_address ⇒ Increase::Models::CheckTransferCreateParams::PhysicalCheck::MailingAddress
Details for where Increase will mail the check.
-
#memo ⇒ String
The descriptor that will be printed on the memo field on the check.
-
#note ⇒ String?
The descriptor that will be printed on the letter included with the check.
-
#recipient_name ⇒ String
The name that will be printed on the check in the ‘To:’ field.
-
#return_address ⇒ Increase::Models::CheckTransferCreateParams::PhysicalCheck::ReturnAddress?
The return address to be printed on the check.
-
#shipping_method ⇒ Symbol, ...
How to ship the check.
-
#signature_text ⇒ String?
The text that will appear as the signature on the check in cursive font.
Instance Method Summary collapse
-
#initialize(city: , line1: , name: , postal_code: , state: , line2: nil) ⇒ Object
constructor
The return address to be printed on the check.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(city: , line1: , name: , postal_code: , state: , line2: nil) ⇒ Object
The return address to be printed on the check. If omitted this will default to an Increase-owned address that will mark checks as delivery failed and shred them.
|
|
# File 'lib/increase/models/check_transfer_create_params.rb', line 159
|
Instance Attribute Details
#attachment_file_id ⇒ String?
The ID of a File to be attached to the check. This must have ‘purpose: check_attachment`. For details on pricing and restrictions, see increase.com/documentation/originating-checks#printing-checks .
126 |
# File 'lib/increase/models/check_transfer_create_params.rb', line 126 optional :attachment_file_id, String |
#mailing_address ⇒ Increase::Models::CheckTransferCreateParams::PhysicalCheck::MailingAddress
Details for where Increase will mail the check.
106 |
# File 'lib/increase/models/check_transfer_create_params.rb', line 106 required :mailing_address, -> { Increase::CheckTransferCreateParams::PhysicalCheck::MailingAddress } |
#memo ⇒ String
The descriptor that will be printed on the memo field on the check.
112 |
# File 'lib/increase/models/check_transfer_create_params.rb', line 112 required :memo, String |
#note ⇒ String?
The descriptor that will be printed on the letter included with the check.
132 |
# File 'lib/increase/models/check_transfer_create_params.rb', line 132 optional :note, String |
#recipient_name ⇒ String
The name that will be printed on the check in the ‘To:’ field.
118 |
# File 'lib/increase/models/check_transfer_create_params.rb', line 118 required :recipient_name, String |
#return_address ⇒ Increase::Models::CheckTransferCreateParams::PhysicalCheck::ReturnAddress?
The return address to be printed on the check. If omitted this will default to an Increase-owned address that will mark checks as delivery failed and shred them.
140 |
# File 'lib/increase/models/check_transfer_create_params.rb', line 140 optional :return_address, -> { Increase::CheckTransferCreateParams::PhysicalCheck::ReturnAddress } |
#shipping_method ⇒ Symbol, ...
How to ship the check. For details on pricing, timing, and restrictions, see increase.com/documentation/originating-checks#printing-checks .
147 148 149 150 |
# File 'lib/increase/models/check_transfer_create_params.rb', line 147 optional :shipping_method, enum: -> { Increase::CheckTransferCreateParams::PhysicalCheck::ShippingMethod } |
#signature_text ⇒ String?
The text that will appear as the signature on the check in cursive font. If not provided, the check will be printed with ‘No signature required’.
157 |
# File 'lib/increase/models/check_transfer_create_params.rb', line 157 optional :signature_text, String |