Class: Imagekitio::Models::SavedExtension
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Imagekitio::Models::SavedExtension
- Defined in:
- lib/imagekitio/models/saved_extension.rb
Instance Attribute Summary collapse
-
#config ⇒ Imagekitio::Models::ExtensionConfig::RemoveBg, ...
Configuration object for an extension (base extensions only, not saved extension references).
-
#created_at ⇒ Time?
Timestamp when the saved extension was created.
-
#description ⇒ String?
Description of the saved extension.
-
#id ⇒ String?
Unique identifier of the saved extension.
-
#name ⇒ String?
Name of the saved extension.
-
#updated_at ⇒ Time?
Timestamp when the saved extension was last updated.
Instance Method Summary collapse
-
#initialize(id: nil, config: nil, created_at: nil, description: nil, name: nil, updated_at: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see SavedExtension 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(id: nil, config: nil, created_at: nil, description: nil, name: nil, updated_at: nil) ⇒ Object
Some parameter documentations has been truncated, see Imagekitio::Models::SavedExtension for more details.
Saved extension object containing extension configuration.
|
|
# File 'lib/imagekitio/models/saved_extension.rb', line 43
|
Instance Attribute Details
#config ⇒ Imagekitio::Models::ExtensionConfig::RemoveBg, ...
Configuration object for an extension (base extensions only, not saved extension references).
17 |
# File 'lib/imagekitio/models/saved_extension.rb', line 17 optional :config, union: -> { Imagekitio::ExtensionConfig } |
#created_at ⇒ Time?
Timestamp when the saved extension was created.
23 |
# File 'lib/imagekitio/models/saved_extension.rb', line 23 optional :created_at, Time, api_name: :createdAt |
#description ⇒ String?
Description of the saved extension.
29 |
# File 'lib/imagekitio/models/saved_extension.rb', line 29 optional :description, String |
#id ⇒ String?
Unique identifier of the saved extension.
10 |
# File 'lib/imagekitio/models/saved_extension.rb', line 10 optional :id, String |
#name ⇒ String?
Name of the saved extension.
35 |
# File 'lib/imagekitio/models/saved_extension.rb', line 35 optional :name, String |
#updated_at ⇒ Time?
Timestamp when the saved extension was last updated.
41 |
# File 'lib/imagekitio/models/saved_extension.rb', line 41 optional :updated_at, Time, api_name: :updatedAt |