Class: SignwellSDK::Models::AttachmentRequestInfo
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- SignwellSDK::Models::AttachmentRequestInfo
- Defined in:
- lib/signwell_sdk/models/attachment_request_info.rb
Instance Attribute Summary collapse
-
#name ⇒ String
Name of the attachment request.
-
#required ⇒ Boolean
Whether the attachment is required.
-
#url ⇒ String?
URL of the uploaded attachment (when available).
Instance Method Summary collapse
-
#initialize(name:, required:, url: nil) ⇒ Object
constructor
Attachment request information.
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(name:, required:, url: nil) ⇒ Object
Attachment request information
|
|
# File 'lib/signwell_sdk/models/attachment_request_info.rb', line 24
|
Instance Attribute Details
#name ⇒ String
Name of the attachment request
10 |
# File 'lib/signwell_sdk/models/attachment_request_info.rb', line 10 required :name, String |
#required ⇒ Boolean
Whether the attachment is required
16 |
# File 'lib/signwell_sdk/models/attachment_request_info.rb', line 16 required :required, SignwellSDK::Internal::Type::Boolean |
#url ⇒ String?
URL of the uploaded attachment (when available)
22 |
# File 'lib/signwell_sdk/models/attachment_request_info.rb', line 22 optional :url, String |