Class: SignwellSDK::Models::V1::DocumentTemplate::CopiedPlaceholder

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/signwell_sdk/models/v1/document_template.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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:, allow_decline: nil, allow_reassign: nil, api_application_id: nil, apply_signing_order: nil, archived: nil, checkbox_groups: nil, copied_placeholders: nil, created_at: nil, custom_requester_email: nil, custom_requester_name: nil, decline_redirect_url: nil, expires_in: nil, fields: nil, files: nil, labels: nil, language: nil, message: nil, metadata: nil, name: nil, placeholders: nil, redirect_url: nil, reminders: nil, requester_email_address: nil, status: nil, subject: nil, template_link: nil, updated_at: nil) ⇒ Object

Parameters:

  • id (String)
  • allow_decline (Boolean, nil) (defaults to: nil)
  • allow_reassign (Boolean, nil) (defaults to: nil)
  • api_application_id (String, nil) (defaults to: nil)
  • apply_signing_order (Boolean) (defaults to: nil)
  • archived (Boolean) (defaults to: nil)
  • checkbox_groups (Array<SignwellSDK::Models::CheckboxGroupInfo>) (defaults to: nil)
  • copied_placeholders (Array<SignwellSDK::Models::V1::DocumentTemplate::CopiedPlaceholder>) (defaults to: nil)
  • created_at (Time) (defaults to: nil)
  • custom_requester_email (String, nil) (defaults to: nil)
  • custom_requester_name (String, nil) (defaults to: nil)
  • decline_redirect_url (String, nil) (defaults to: nil)
  • expires_in (Integer, nil) (defaults to: nil)
  • fields (Array<Array<SignwellSDK::Models::V1::DocumentTemplate::Field>>) (defaults to: nil)
  • files (Array<SignwellSDK::Models::FileInfo>) (defaults to: nil)
  • labels (Array<SignwellSDK::Models::LabelInfo>) (defaults to: nil)
  • language (String) (defaults to: nil)
  • message (String) (defaults to: nil)
  • metadata (Hash{Symbol=>String}, nil) (defaults to: nil)
  • name (String) (defaults to: nil)
  • placeholders (Array<SignwellSDK::Models::V1::DocumentTemplate::Placeholder>) (defaults to: nil)
  • redirect_url (String, nil) (defaults to: nil)
  • reminders (Boolean, nil) (defaults to: nil)
  • requester_email_address (String) (defaults to: nil)
  • status (String) (defaults to: nil)
  • subject (String) (defaults to: nil)
  • template_link (String) (defaults to: nil)
  • updated_at (Time) (defaults to: nil)


181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# File 'lib/signwell_sdk/models/v1/document_template.rb', line 181

class CopiedPlaceholder < SignwellSDK::Internal::Type::BaseModel
  # @!attribute name
  #
  #   @return [String]
  required :name, String

  # @!attribute id
  #
  #   @return [String, nil]
  optional :id, String

  # @!attribute message
  #
  #   @return [String, nil]
  optional :message, String, nil?: true

  # @!attribute placeholder_id
  #
  #   @return [String, nil]
  optional :placeholder_id, String

  # @!attribute preassigned_recipient_email
  #
  #   @return [String, nil]
  optional :preassigned_recipient_email, String

  # @!attribute preassigned_recipient_name
  #
  #   @return [String, nil]
  optional :preassigned_recipient_name, String

  # @!attribute subject
  #
  #   @return [String, nil]
  optional :subject, String, nil?: true

  # @!method initialize(name:, id: nil, message: nil, placeholder_id: nil, preassigned_recipient_email: nil, preassigned_recipient_name: nil, subject: nil)
  #   @param name [String]
  #   @param id [String]
  #   @param message [String, nil]
  #   @param placeholder_id [String]
  #   @param preassigned_recipient_email [String]
  #   @param preassigned_recipient_name [String]
  #   @param subject [String, nil]
end

Instance Attribute Details

#idString?

Returns:

  • (String, nil)


190
# File 'lib/signwell_sdk/models/v1/document_template.rb', line 190

optional :id, String

#messageString?

Returns:

  • (String, nil)


195
# File 'lib/signwell_sdk/models/v1/document_template.rb', line 195

optional :message, String, nil?: true

#nameString

Returns:

  • (String)


185
# File 'lib/signwell_sdk/models/v1/document_template.rb', line 185

required :name, String

#placeholder_idString?

Returns:

  • (String, nil)


200
# File 'lib/signwell_sdk/models/v1/document_template.rb', line 200

optional :placeholder_id, String

#preassigned_recipient_emailString?

Returns:

  • (String, nil)


205
# File 'lib/signwell_sdk/models/v1/document_template.rb', line 205

optional :preassigned_recipient_email, String

#preassigned_recipient_nameString?

Returns:

  • (String, nil)


210
# File 'lib/signwell_sdk/models/v1/document_template.rb', line 210

optional :preassigned_recipient_name, String

#subjectString?

Returns:

  • (String, nil)


215
# File 'lib/signwell_sdk/models/v1/document_template.rb', line 215

optional :subject, String, nil?: true