Class: Increase::Models::CheckTransfer::PhysicalCheck
- Defined in:
- lib/increase/models/check_transfer.rb
Defined Under Namespace
Classes: MailingAddress, ReturnAddress
Instance Attribute Summary collapse
-
#mailing_address ⇒ Increase::Models::CheckTransfer::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.
-
#return_address ⇒ Increase::Models::CheckTransfer::PhysicalCheck::ReturnAddress
The return address to be printed on the check.
-
#signature_text ⇒ String
The text that will appear as the signature on the check in cursive font.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#mailing_address ⇒ Increase::Models::CheckTransfer::PhysicalCheck::MailingAddress
Details for where Increase will mail the check.
216 |
# File 'lib/increase/models/check_transfer.rb', line 216 required :mailing_address, -> { Increase::Models::CheckTransfer::PhysicalCheck::MailingAddress } |
#memo ⇒ String
The descriptor that will be printed on the memo field on the check.
221 |
# File 'lib/increase/models/check_transfer.rb', line 221 required :memo, String |
#note ⇒ String
The descriptor that will be printed on the letter included with the check.
226 |
# File 'lib/increase/models/check_transfer.rb', line 226 required :note, String |
#recipient_name ⇒ String
The name that will be printed on the check.
231 |
# File 'lib/increase/models/check_transfer.rb', line 231 required :recipient_name, String |
#return_address ⇒ Increase::Models::CheckTransfer::PhysicalCheck::ReturnAddress
The return address to be printed on the check.
236 |
# File 'lib/increase/models/check_transfer.rb', line 236 required :return_address, -> { Increase::Models::CheckTransfer::PhysicalCheck::ReturnAddress } |
#signature_text ⇒ String
The text that will appear as the signature on the check in cursive font. If blank, the check will be printed with 'No signature required'.
241 |
# File 'lib/increase/models/check_transfer.rb', line 241 required :signature_text, String |