Class: Increase::Models::CardIframeURL
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::CardIframeURL
- Defined in:
- lib/increase/models/card_iframe_url.rb
Overview
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
-
#expires_at ⇒ Time
The time the iframe URL will expire.
-
#iframe_url ⇒ String
The iframe URL for the Card.
-
#type ⇒ Symbol, Increase::Models::CardIframeURL::Type
A constant representing the object’s type.
Instance Method Summary collapse
-
#initialize(expires_at: , iframe_url: , type: ) ⇒ Object
constructor
Some parameter documentations has been truncated, see CardIframeURL for more details.
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, meta_info, new_coerce_state, 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(expires_at: , iframe_url: , type: ) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::CardIframeURL for more details.
An object containing the iframe URL for a Card.
|
|
# File 'lib/increase/models/card_iframe_url.rb', line 26
|
Instance Attribute Details
#expires_at ⇒ Time
The time the iframe URL will expire.
11 |
# File 'lib/increase/models/card_iframe_url.rb', line 11 required :expires_at, Time |
#iframe_url ⇒ String
The iframe URL for the Card. Treat this as an opaque URL.
17 |
# File 'lib/increase/models/card_iframe_url.rb', line 17 required :iframe_url, String |
#type ⇒ Symbol, Increase::Models::CardIframeURL::Type
A constant representing the object’s type. For this resource it will always be ‘card_iframe_url`.
24 |
# File 'lib/increase/models/card_iframe_url.rb', line 24 required :type, enum: -> { Increase::CardIframeURL::Type } |