Class: Increase::Models::Lockbox
- Defined in:
- lib/increase/models/lockbox.rb
Defined Under Namespace
Classes: Address
Instance Attribute Summary collapse
-
#account_id ⇒ String
The identifier for the Account checks sent to this lockbox will be deposited into.
-
#address ⇒ Increase::Models::Lockbox::Address
The mailing address for the Lockbox.
-
#created_at ⇒ String
The ISO 8601 time at which the Lockbox was created.
-
#description ⇒ String
The description you choose for the Lockbox.
-
#id ⇒ String
The Lockbox identifier.
-
#idempotency_key ⇒ String
The idempotency key you chose for this object.
-
#status ⇒ Symbol
This indicates if mail can be sent to this address.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#account_id ⇒ String
The identifier for the Account checks sent to this lockbox will be deposited into.
14 |
# File 'lib/increase/models/lockbox.rb', line 14 required :account_id, String |
#address ⇒ Increase::Models::Lockbox::Address
The mailing address for the Lockbox.
19 |
# File 'lib/increase/models/lockbox.rb', line 19 required :address, -> { Increase::Models::Lockbox::Address } |
#created_at ⇒ String
The ISO 8601 time at which the Lockbox was created.
24 |
# File 'lib/increase/models/lockbox.rb', line 24 required :created_at, String |
#description ⇒ String
The description you choose for the Lockbox.
29 |
# File 'lib/increase/models/lockbox.rb', line 29 required :description, String |
#id ⇒ String
The Lockbox identifier.
9 |
# File 'lib/increase/models/lockbox.rb', line 9 required :id, String |
#idempotency_key ⇒ String
The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about idempotency.
34 |
# File 'lib/increase/models/lockbox.rb', line 34 required :idempotency_key, String |
#status ⇒ Symbol
This indicates if mail can be sent to this address.
39 |
# File 'lib/increase/models/lockbox.rb', line 39 required :status, Increase::Enum.new(:active, :inactive) |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be lockbox
.
44 |
# File 'lib/increase/models/lockbox.rb', line 44 required :type, Increase::Enum.new(:lockbox) |