Class: Autorender::Models::UploadCreateFromURLParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Autorender::Models::UploadCreateFromURLParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/autorender/models/upload_create_from_url_params.rb
Overview
Instance Attribute Summary collapse
- #custom_id ⇒ String?
-
#file_name ⇒ String?
Override file name.
-
#folder ⇒ String?
Destination folder path.
-
#metadata ⇒ String?
JSON string of metadata object.
-
#random_prefix ⇒ String?
true/false to append random suffix.
-
#remote_url ⇒ String
HTTP/HTTPS URL to fetch.
-
#tags ⇒ String?
Comma-separated tags.
- #webhook_url ⇒ String?
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
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(remote_url:, custom_id: nil, file_name: nil, folder: nil, metadata: nil, random_prefix: nil, tags: nil, webhook_url: nil, request_options: {}) ⇒ Object
|
|
# File 'lib/autorender/models/upload_create_from_url_params.rb', line 56
|
Instance Attribute Details
#custom_id ⇒ String?
19 |
# File 'lib/autorender/models/upload_create_from_url_params.rb', line 19 optional :custom_id, String |
#file_name ⇒ String?
Override file name
25 |
# File 'lib/autorender/models/upload_create_from_url_params.rb', line 25 optional :file_name, String |
#folder ⇒ String?
Destination folder path
31 |
# File 'lib/autorender/models/upload_create_from_url_params.rb', line 31 optional :folder, String |
#metadata ⇒ String?
JSON string of metadata object
37 |
# File 'lib/autorender/models/upload_create_from_url_params.rb', line 37 optional :metadata, String |
#random_prefix ⇒ String?
true/false to append random suffix
43 |
# File 'lib/autorender/models/upload_create_from_url_params.rb', line 43 optional :random_prefix, String |
#remote_url ⇒ String
HTTP/HTTPS URL to fetch
14 |
# File 'lib/autorender/models/upload_create_from_url_params.rb', line 14 required :remote_url, String |
#tags ⇒ String?
Comma-separated tags
49 |
# File 'lib/autorender/models/upload_create_from_url_params.rb', line 49 optional :tags, String |
#webhook_url ⇒ String?
54 |
# File 'lib/autorender/models/upload_create_from_url_params.rb', line 54 optional :webhook_url, String |