dropbox-sign 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/Gemfile.lock +16 -13
- data/LICENSE +1 -1
- data/README.md +15 -5
- data/VERSION +1 -1
- data/docs/AccountResponseQuotas.md +1 -1
- data/docs/BulkSendJobApi.md +1 -1
- data/docs/FaxApi.md +364 -0
- data/docs/FaxGetResponse.md +11 -0
- data/docs/FaxListResponse.md +11 -0
- data/docs/FaxResponse.md +19 -0
- data/docs/FaxResponseTransmission.md +13 -0
- data/docs/FaxSendRequest.md +18 -0
- data/docs/OAuthTokenRefreshRequest.md +2 -0
- data/docs/SignatureRequestApi.md +2 -2
- data/docs/SubWhiteLabelingOptions.md +12 -12
- data/docs/TeamApi.md +1 -1
- data/docs/TemplateApi.md +4 -4
- data/docs/TemplateResponse.md +2 -1
- data/docs/TemplateResponseDocumentFormFieldBase.md +0 -1
- data/docs/TemplateResponseDocumentFormFieldCheckbox.md +1 -0
- data/docs/TemplateResponseDocumentFormFieldDateSigned.md +1 -0
- data/docs/TemplateResponseDocumentFormFieldDropdown.md +1 -0
- data/docs/TemplateResponseDocumentFormFieldHyperlink.md +1 -0
- data/docs/TemplateResponseDocumentFormFieldInitials.md +1 -0
- data/docs/TemplateResponseDocumentFormFieldRadio.md +1 -0
- data/docs/TemplateResponseDocumentFormFieldSignature.md +1 -0
- data/docs/TemplateResponseDocumentFormFieldText.md +1 -0
- data/examples/BulkSendJobList.rb +1 -1
- data/examples/FaxDelete.rb +14 -0
- data/examples/FaxFiles.rb +17 -0
- data/examples/FaxGet.rb +17 -0
- data/examples/FaxList.rb +18 -0
- data/examples/FaxSend.rb +25 -0
- data/examples/SignatureRequestList.rb +1 -1
- data/examples/TeamInvites.rb +1 -1
- data/examples/TemplateList.rb +1 -1
- data/lib/dropbox-sign/api/account_api.rb +3 -3
- data/lib/dropbox-sign/api/api_app_api.rb +2 -2
- data/lib/dropbox-sign/api/embedded_api.rb +1 -1
- data/lib/dropbox-sign/api/fax_api.rb +495 -0
- data/lib/dropbox-sign/api/fax_line_api.rb +4 -4
- data/lib/dropbox-sign/api/o_auth_api.rb +30 -2
- data/lib/dropbox-sign/api/report_api.rb +1 -1
- data/lib/dropbox-sign/api/signature_request_api.rb +10 -10
- data/lib/dropbox-sign/api/team_api.rb +4 -4
- data/lib/dropbox-sign/api/template_api.rb +7 -7
- data/lib/dropbox-sign/api/unclaimed_draft_api.rb +4 -4
- data/lib/dropbox-sign/configuration.rb +2 -4
- data/lib/dropbox-sign/event_callback_helper.rb +2 -2
- data/lib/dropbox-sign/models/account_create_request.rb +1 -3
- data/lib/dropbox-sign/models/account_create_response.rb +1 -3
- data/lib/dropbox-sign/models/account_get_response.rb +1 -3
- data/lib/dropbox-sign/models/account_response.rb +1 -3
- data/lib/dropbox-sign/models/account_response_quotas.rb +2 -4
- data/lib/dropbox-sign/models/account_response_usage.rb +1 -3
- data/lib/dropbox-sign/models/account_update_request.rb +1 -3
- data/lib/dropbox-sign/models/account_verify_request.rb +1 -3
- data/lib/dropbox-sign/models/account_verify_response.rb +1 -3
- data/lib/dropbox-sign/models/account_verify_response_account.rb +1 -3
- data/lib/dropbox-sign/models/api_app_create_request.rb +1 -3
- data/lib/dropbox-sign/models/api_app_get_response.rb +1 -3
- data/lib/dropbox-sign/models/api_app_list_response.rb +1 -3
- data/lib/dropbox-sign/models/api_app_response.rb +1 -3
- data/lib/dropbox-sign/models/api_app_response_o_auth.rb +3 -4
- data/lib/dropbox-sign/models/api_app_response_options.rb +1 -3
- data/lib/dropbox-sign/models/api_app_response_owner_account.rb +1 -3
- data/lib/dropbox-sign/models/api_app_response_white_labeling_options.rb +1 -3
- data/lib/dropbox-sign/models/api_app_update_request.rb +1 -3
- data/lib/dropbox-sign/models/bulk_send_job_get_response.rb +1 -3
- data/lib/dropbox-sign/models/bulk_send_job_get_response_signature_requests.rb +1 -3
- data/lib/dropbox-sign/models/bulk_send_job_list_response.rb +1 -3
- data/lib/dropbox-sign/models/bulk_send_job_response.rb +1 -3
- data/lib/dropbox-sign/models/bulk_send_job_send_response.rb +1 -3
- data/lib/dropbox-sign/models/embedded_edit_url_request.rb +1 -3
- data/lib/dropbox-sign/models/embedded_edit_url_response.rb +1 -3
- data/lib/dropbox-sign/models/embedded_edit_url_response_embedded.rb +1 -3
- data/lib/dropbox-sign/models/embedded_sign_url_response.rb +1 -3
- data/lib/dropbox-sign/models/embedded_sign_url_response_embedded.rb +1 -3
- data/lib/dropbox-sign/models/error_response.rb +1 -3
- data/lib/dropbox-sign/models/error_response_error.rb +1 -3
- data/lib/dropbox-sign/models/event_callback_request.rb +1 -3
- data/lib/dropbox-sign/models/event_callback_request_event.rb +1 -3
- data/lib/dropbox-sign/models/event_callback_request_event_metadata.rb +1 -3
- data/lib/dropbox-sign/models/fax_get_response.rb +263 -0
- data/lib/dropbox-sign/models/fax_line_add_user_request.rb +1 -3
- data/lib/dropbox-sign/models/fax_line_area_code_get_response.rb +1 -3
- data/lib/dropbox-sign/models/fax_line_create_request.rb +1 -3
- data/lib/dropbox-sign/models/fax_line_delete_request.rb +1 -3
- data/lib/dropbox-sign/models/fax_line_list_response.rb +1 -3
- data/lib/dropbox-sign/models/fax_line_remove_user_request.rb +1 -3
- data/lib/dropbox-sign/models/fax_line_response.rb +1 -3
- data/lib/dropbox-sign/models/fax_line_response_fax_line.rb +1 -3
- data/lib/dropbox-sign/models/fax_list_response.rb +267 -0
- data/lib/dropbox-sign/models/fax_response.rb +399 -0
- data/lib/dropbox-sign/models/fax_response_transmission.rb +328 -0
- data/lib/dropbox-sign/models/fax_send_request.rb +345 -0
- data/lib/dropbox-sign/models/file_response.rb +1 -3
- data/lib/dropbox-sign/models/file_response_data_uri.rb +1 -3
- data/lib/dropbox-sign/models/list_info_response.rb +1 -3
- data/lib/dropbox-sign/models/o_auth_token_generate_request.rb +1 -3
- data/lib/dropbox-sign/models/o_auth_token_refresh_request.rb +27 -7
- data/lib/dropbox-sign/models/o_auth_token_response.rb +1 -3
- data/lib/dropbox-sign/models/report_create_request.rb +1 -3
- data/lib/dropbox-sign/models/report_create_response.rb +1 -3
- data/lib/dropbox-sign/models/report_response.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_bulk_create_embedded_with_template_request.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_bulk_send_with_template_request.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_create_embedded_request.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_create_embedded_with_template_request.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_get_response.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_list_response.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_remind_request.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_response.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_response_attachment.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_response_custom_field_base.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_response_custom_field_checkbox.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_response_custom_field_text.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_response_data_base.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_response_data_value_checkbox.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_response_data_value_checkbox_merge.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_response_data_value_date_signed.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_response_data_value_dropdown.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_response_data_value_initials.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_response_data_value_radio.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_response_data_value_signature.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_response_data_value_text.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_response_data_value_text_merge.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_response_signatures.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_send_request.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_send_with_template_request.rb +1 -3
- data/lib/dropbox-sign/models/signature_request_update_request.rb +1 -3
- data/lib/dropbox-sign/models/sub_attachment.rb +1 -3
- data/lib/dropbox-sign/models/sub_bulk_signer_list.rb +1 -3
- data/lib/dropbox-sign/models/sub_bulk_signer_list_custom_field.rb +1 -3
- data/lib/dropbox-sign/models/sub_cc.rb +1 -3
- data/lib/dropbox-sign/models/sub_custom_field.rb +1 -3
- data/lib/dropbox-sign/models/sub_editor_options.rb +1 -3
- data/lib/dropbox-sign/models/sub_field_options.rb +1 -3
- data/lib/dropbox-sign/models/sub_form_field_group.rb +1 -3
- data/lib/dropbox-sign/models/sub_form_field_rule.rb +1 -3
- data/lib/dropbox-sign/models/sub_form_field_rule_action.rb +1 -3
- data/lib/dropbox-sign/models/sub_form_field_rule_trigger.rb +1 -3
- data/lib/dropbox-sign/models/sub_form_fields_per_document_base.rb +1 -3
- data/lib/dropbox-sign/models/sub_form_fields_per_document_checkbox.rb +1 -3
- data/lib/dropbox-sign/models/sub_form_fields_per_document_checkbox_merge.rb +1 -3
- data/lib/dropbox-sign/models/sub_form_fields_per_document_date_signed.rb +1 -3
- data/lib/dropbox-sign/models/sub_form_fields_per_document_dropdown.rb +1 -3
- data/lib/dropbox-sign/models/sub_form_fields_per_document_hyperlink.rb +1 -3
- data/lib/dropbox-sign/models/sub_form_fields_per_document_initials.rb +1 -3
- data/lib/dropbox-sign/models/sub_form_fields_per_document_radio.rb +1 -3
- data/lib/dropbox-sign/models/sub_form_fields_per_document_signature.rb +1 -3
- data/lib/dropbox-sign/models/sub_form_fields_per_document_text.rb +1 -3
- data/lib/dropbox-sign/models/sub_form_fields_per_document_text_merge.rb +1 -3
- data/lib/dropbox-sign/models/sub_merge_field.rb +1 -3
- data/lib/dropbox-sign/models/sub_o_auth.rb +1 -3
- data/lib/dropbox-sign/models/sub_options.rb +1 -3
- data/lib/dropbox-sign/models/sub_signature_request_grouped_signers.rb +1 -3
- data/lib/dropbox-sign/models/sub_signature_request_signer.rb +1 -3
- data/lib/dropbox-sign/models/sub_signature_request_template_signer.rb +1 -3
- data/lib/dropbox-sign/models/sub_signing_options.rb +1 -3
- data/lib/dropbox-sign/models/sub_team_response.rb +1 -3
- data/lib/dropbox-sign/models/sub_template_role.rb +1 -3
- data/lib/dropbox-sign/models/sub_unclaimed_draft_signer.rb +1 -3
- data/lib/dropbox-sign/models/sub_unclaimed_draft_template_signer.rb +1 -3
- data/lib/dropbox-sign/models/sub_white_labeling_options.rb +13 -15
- data/lib/dropbox-sign/models/team_add_member_request.rb +1 -3
- data/lib/dropbox-sign/models/team_create_request.rb +1 -3
- data/lib/dropbox-sign/models/team_get_info_response.rb +1 -3
- data/lib/dropbox-sign/models/team_get_response.rb +1 -3
- data/lib/dropbox-sign/models/team_info_response.rb +1 -3
- data/lib/dropbox-sign/models/team_invite_response.rb +1 -3
- data/lib/dropbox-sign/models/team_invites_response.rb +1 -3
- data/lib/dropbox-sign/models/team_member_response.rb +1 -3
- data/lib/dropbox-sign/models/team_members_response.rb +1 -3
- data/lib/dropbox-sign/models/team_parent_response.rb +1 -3
- data/lib/dropbox-sign/models/team_remove_member_request.rb +1 -3
- data/lib/dropbox-sign/models/team_response.rb +1 -3
- data/lib/dropbox-sign/models/team_sub_teams_response.rb +1 -3
- data/lib/dropbox-sign/models/team_update_request.rb +1 -3
- data/lib/dropbox-sign/models/template_add_user_request.rb +1 -3
- data/lib/dropbox-sign/models/template_create_embedded_draft_request.rb +1 -3
- data/lib/dropbox-sign/models/template_create_embedded_draft_response.rb +1 -3
- data/lib/dropbox-sign/models/template_create_embedded_draft_response_template.rb +1 -3
- data/lib/dropbox-sign/models/template_create_request.rb +1 -3
- data/lib/dropbox-sign/models/template_create_response.rb +1 -3
- data/lib/dropbox-sign/models/template_create_response_template.rb +1 -3
- data/lib/dropbox-sign/models/template_edit_response.rb +1 -3
- data/lib/dropbox-sign/models/template_get_response.rb +1 -3
- data/lib/dropbox-sign/models/template_list_response.rb +1 -3
- data/lib/dropbox-sign/models/template_remove_user_request.rb +1 -3
- data/lib/dropbox-sign/models/template_response.rb +23 -16
- data/lib/dropbox-sign/models/template_response_account.rb +1 -3
- data/lib/dropbox-sign/models/template_response_account_quota.rb +1 -3
- data/lib/dropbox-sign/models/template_response_cc_role.rb +1 -3
- data/lib/dropbox-sign/models/template_response_document.rb +2 -5
- data/lib/dropbox-sign/models/template_response_document_custom_field_base.rb +1 -3
- data/lib/dropbox-sign/models/template_response_document_custom_field_checkbox.rb +1 -3
- data/lib/dropbox-sign/models/template_response_document_custom_field_text.rb +1 -3
- data/lib/dropbox-sign/models/template_response_document_field_group.rb +1 -3
- data/lib/dropbox-sign/models/template_response_document_field_group_rule.rb +1 -3
- data/lib/dropbox-sign/models/template_response_document_form_field_base.rb +5 -19
- data/lib/dropbox-sign/models/template_response_document_form_field_checkbox.rb +17 -7
- data/lib/dropbox-sign/models/template_response_document_form_field_date_signed.rb +17 -7
- data/lib/dropbox-sign/models/template_response_document_form_field_dropdown.rb +17 -7
- data/lib/dropbox-sign/models/template_response_document_form_field_hyperlink.rb +17 -7
- data/lib/dropbox-sign/models/template_response_document_form_field_initials.rb +17 -7
- data/lib/dropbox-sign/models/template_response_document_form_field_radio.rb +21 -7
- data/lib/dropbox-sign/models/template_response_document_form_field_signature.rb +17 -7
- data/lib/dropbox-sign/models/template_response_document_form_field_text.rb +18 -8
- data/lib/dropbox-sign/models/template_response_document_static_field_base.rb +1 -3
- data/lib/dropbox-sign/models/template_response_document_static_field_checkbox.rb +1 -3
- data/lib/dropbox-sign/models/template_response_document_static_field_date_signed.rb +1 -3
- data/lib/dropbox-sign/models/template_response_document_static_field_dropdown.rb +1 -3
- data/lib/dropbox-sign/models/template_response_document_static_field_hyperlink.rb +1 -3
- data/lib/dropbox-sign/models/template_response_document_static_field_initials.rb +1 -3
- data/lib/dropbox-sign/models/template_response_document_static_field_radio.rb +1 -3
- data/lib/dropbox-sign/models/template_response_document_static_field_signature.rb +1 -3
- data/lib/dropbox-sign/models/template_response_document_static_field_text.rb +1 -3
- data/lib/dropbox-sign/models/template_response_field_avg_text_length.rb +1 -3
- data/lib/dropbox-sign/models/template_response_signer_role.rb +1 -3
- data/lib/dropbox-sign/models/template_update_files_request.rb +1 -3
- data/lib/dropbox-sign/models/template_update_files_response.rb +1 -3
- data/lib/dropbox-sign/models/template_update_files_response_template.rb +1 -3
- data/lib/dropbox-sign/models/unclaimed_draft_create_embedded_request.rb +1 -3
- data/lib/dropbox-sign/models/unclaimed_draft_create_embedded_with_template_request.rb +1 -3
- data/lib/dropbox-sign/models/unclaimed_draft_create_request.rb +1 -3
- data/lib/dropbox-sign/models/unclaimed_draft_create_response.rb +1 -3
- data/lib/dropbox-sign/models/unclaimed_draft_edit_and_resend_request.rb +1 -3
- data/lib/dropbox-sign/models/unclaimed_draft_response.rb +1 -3
- data/lib/dropbox-sign/models/warning_response.rb +1 -3
- data/lib/dropbox-sign/version.rb +1 -1
- data/lib/dropbox-sign.rb +6 -0
- data/openapi-config.yaml +7 -3
- data/openapi-sdk.yaml +821 -112
- data/run-build +15 -3
- data/spec/api/bulk_send_job_api_spec.rb +1 -1
- data/spec/api/signature_request_api_spec.rb +2 -2
- data/spec/api/template_api_spec.rb +1 -1
- data/templates/Gemfile.mustache +3 -0
- data/templates/dropbox-LICENSE.mustache +21 -0
- data/templates/gitignore.mustache +1 -0
- data/test_fixtures/ApiAppCreateRequest.json +10 -10
- data/test_fixtures/ApiAppGetResponse.json +18 -3
- data/test_fixtures/ApiAppListResponse.json +7 -1
- data/test_fixtures/ApiAppUpdateRequest.json +11 -11
- data/test_fixtures/FaxGetResponse.json +23 -0
- data/test_fixtures/FaxListResponse.json +31 -0
- data/test_fixtures/FaxSendRequest.json +14 -0
- data/test_fixtures/FaxSendResponse.json +16 -0
- data/test_fixtures/TeamGetResponse.json +5 -0
- data/test_fixtures/TemplateGetResponse.json +25 -478
- data/test_fixtures/TemplateListResponse.json +34 -5
- metadata +32 -10
- /data/templates/{VERSION-root.mustache → dropbox-VERSION.mustache} +0 -0
- /data/templates/{event_callback_helper.mustache → dropbox-event_callback_helper.mustache} +0 -0
@@ -90,7 +90,7 @@ module Dropbox::Sign
|
|
90
90
|
# @param [Object] data Data to be converted
|
91
91
|
# @return [TemplateResponseDocumentCustomFieldText]
|
92
92
|
def self.init(data)
|
93
|
-
|
93
|
+
ApiClient.default.convert_to_type(
|
94
94
|
data,
|
95
95
|
"TemplateResponseDocumentCustomFieldText"
|
96
96
|
) || TemplateResponseDocumentCustomFieldText.new
|
@@ -297,7 +297,5 @@ module Dropbox::Sign
|
|
297
297
|
value
|
298
298
|
end
|
299
299
|
end
|
300
|
-
|
301
300
|
end
|
302
|
-
|
303
301
|
end
|
@@ -71,7 +71,7 @@ module Dropbox::Sign
|
|
71
71
|
# @param [Object] data Data to be converted
|
72
72
|
# @return [TemplateResponseDocumentFieldGroup]
|
73
73
|
def self.init(data)
|
74
|
-
|
74
|
+
ApiClient.default.convert_to_type(
|
75
75
|
data,
|
76
76
|
"TemplateResponseDocumentFieldGroup"
|
77
77
|
) || TemplateResponseDocumentFieldGroup.new
|
@@ -252,7 +252,5 @@ module Dropbox::Sign
|
|
252
252
|
value
|
253
253
|
end
|
254
254
|
end
|
255
|
-
|
256
255
|
end
|
257
|
-
|
258
256
|
end
|
@@ -73,7 +73,7 @@ module Dropbox::Sign
|
|
73
73
|
# @param [Object] data Data to be converted
|
74
74
|
# @return [TemplateResponseDocumentFieldGroupRule]
|
75
75
|
def self.init(data)
|
76
|
-
|
76
|
+
ApiClient.default.convert_to_type(
|
77
77
|
data,
|
78
78
|
"TemplateResponseDocumentFieldGroupRule"
|
79
79
|
) || TemplateResponseDocumentFieldGroupRule.new
|
@@ -254,7 +254,5 @@ module Dropbox::Sign
|
|
254
254
|
value
|
255
255
|
end
|
256
256
|
end
|
257
|
-
|
258
257
|
end
|
259
|
-
|
260
258
|
end
|
@@ -54,10 +54,6 @@ module Dropbox::Sign
|
|
54
54
|
# @return [Boolean]
|
55
55
|
attr_accessor :required
|
56
56
|
|
57
|
-
# The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.
|
58
|
-
# @return [String, nil]
|
59
|
-
attr_accessor :group
|
60
|
-
|
61
57
|
# Attribute mapping from ruby-style variable name to JSON key.
|
62
58
|
def self.attribute_map
|
63
59
|
{
|
@@ -69,8 +65,7 @@ module Dropbox::Sign
|
|
69
65
|
:'y' => :'y',
|
70
66
|
:'width' => :'width',
|
71
67
|
:'height' => :'height',
|
72
|
-
:'required' => :'required'
|
73
|
-
:'group' => :'group'
|
68
|
+
:'required' => :'required'
|
74
69
|
}
|
75
70
|
end
|
76
71
|
|
@@ -90,15 +85,13 @@ module Dropbox::Sign
|
|
90
85
|
:'y' => :'Integer',
|
91
86
|
:'width' => :'Integer',
|
92
87
|
:'height' => :'Integer',
|
93
|
-
:'required' => :'Boolean'
|
94
|
-
:'group' => :'String'
|
88
|
+
:'required' => :'Boolean'
|
95
89
|
}
|
96
90
|
end
|
97
91
|
|
98
92
|
# List of attributes with nullable: true
|
99
93
|
def self.openapi_nullable
|
100
94
|
Set.new([
|
101
|
-
:'group'
|
102
95
|
])
|
103
96
|
end
|
104
97
|
|
@@ -150,7 +143,7 @@ module Dropbox::Sign
|
|
150
143
|
return "Dropbox::Sign::TemplateResponseDocumentFormFieldText"
|
151
144
|
end
|
152
145
|
|
153
|
-
|
146
|
+
nil
|
154
147
|
end
|
155
148
|
|
156
149
|
# Initializes the object
|
@@ -203,10 +196,6 @@ module Dropbox::Sign
|
|
203
196
|
if attributes.key?(:'required')
|
204
197
|
self.required = attributes[:'required']
|
205
198
|
end
|
206
|
-
|
207
|
-
if attributes.key?(:'group')
|
208
|
-
self.group = attributes[:'group']
|
209
|
-
end
|
210
199
|
end
|
211
200
|
|
212
201
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -240,8 +229,7 @@ module Dropbox::Sign
|
|
240
229
|
y == o.y &&
|
241
230
|
width == o.width &&
|
242
231
|
height == o.height &&
|
243
|
-
required == o.required
|
244
|
-
group == o.group
|
232
|
+
required == o.required
|
245
233
|
end
|
246
234
|
|
247
235
|
# @see the `==` method
|
@@ -253,7 +241,7 @@ module Dropbox::Sign
|
|
253
241
|
# Calculates hash code according to all attributes.
|
254
242
|
# @return [Integer] Hash code
|
255
243
|
def hash
|
256
|
-
[type, api_id, name, signer, x, y, width, height, required
|
244
|
+
[type, api_id, name, signer, x, y, width, height, required].hash
|
257
245
|
end
|
258
246
|
|
259
247
|
# Builds the object from hash
|
@@ -380,7 +368,5 @@ module Dropbox::Sign
|
|
380
368
|
value
|
381
369
|
end
|
382
370
|
end
|
383
|
-
|
384
371
|
end
|
385
|
-
|
386
372
|
end
|
@@ -23,10 +23,15 @@ module Dropbox::Sign
|
|
23
23
|
# @return [String]
|
24
24
|
attr_accessor :type
|
25
25
|
|
26
|
+
# The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.
|
27
|
+
# @return [String, nil]
|
28
|
+
attr_accessor :group
|
29
|
+
|
26
30
|
# Attribute mapping from ruby-style variable name to JSON key.
|
27
31
|
def self.attribute_map
|
28
32
|
{
|
29
|
-
:'type' => :'type'
|
33
|
+
:'type' => :'type',
|
34
|
+
:'group' => :'group'
|
30
35
|
}
|
31
36
|
end
|
32
37
|
|
@@ -38,13 +43,15 @@ module Dropbox::Sign
|
|
38
43
|
# Attribute type mapping.
|
39
44
|
def self.openapi_types
|
40
45
|
{
|
41
|
-
:'type' => :'String'
|
46
|
+
:'type' => :'String',
|
47
|
+
:'group' => :'String'
|
42
48
|
}
|
43
49
|
end
|
44
50
|
|
45
51
|
# List of attributes with nullable: true
|
46
52
|
def self.openapi_nullable
|
47
53
|
Set.new([
|
54
|
+
:'group'
|
48
55
|
])
|
49
56
|
end
|
50
57
|
|
@@ -67,7 +74,7 @@ module Dropbox::Sign
|
|
67
74
|
# @param [Object] data Data to be converted
|
68
75
|
# @return [TemplateResponseDocumentFormFieldCheckbox]
|
69
76
|
def self.init(data)
|
70
|
-
|
77
|
+
ApiClient.default.convert_to_type(
|
71
78
|
data,
|
72
79
|
"TemplateResponseDocumentFormFieldCheckbox"
|
73
80
|
) || TemplateResponseDocumentFormFieldCheckbox.new
|
@@ -96,6 +103,10 @@ module Dropbox::Sign
|
|
96
103
|
else
|
97
104
|
self.type = 'checkbox'
|
98
105
|
end
|
106
|
+
|
107
|
+
if attributes.key?(:'group')
|
108
|
+
self.group = attributes[:'group']
|
109
|
+
end
|
99
110
|
end
|
100
111
|
|
101
112
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -121,7 +132,8 @@ module Dropbox::Sign
|
|
121
132
|
def ==(o)
|
122
133
|
return true if self.equal?(o)
|
123
134
|
self.class == o.class &&
|
124
|
-
type == o.type &&
|
135
|
+
type == o.type &&
|
136
|
+
group == o.group && super(o)
|
125
137
|
end
|
126
138
|
|
127
139
|
# @see the `==` method
|
@@ -133,7 +145,7 @@ module Dropbox::Sign
|
|
133
145
|
# Calculates hash code according to all attributes.
|
134
146
|
# @return [Integer] Hash code
|
135
147
|
def hash
|
136
|
-
[type].hash
|
148
|
+
[type, group].hash
|
137
149
|
end
|
138
150
|
|
139
151
|
# Builds the object from hash
|
@@ -254,7 +266,5 @@ module Dropbox::Sign
|
|
254
266
|
value
|
255
267
|
end
|
256
268
|
end
|
257
|
-
|
258
269
|
end
|
259
|
-
|
260
270
|
end
|
@@ -23,10 +23,15 @@ module Dropbox::Sign
|
|
23
23
|
# @return [String]
|
24
24
|
attr_accessor :type
|
25
25
|
|
26
|
+
# The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.
|
27
|
+
# @return [String, nil]
|
28
|
+
attr_accessor :group
|
29
|
+
|
26
30
|
# Attribute mapping from ruby-style variable name to JSON key.
|
27
31
|
def self.attribute_map
|
28
32
|
{
|
29
|
-
:'type' => :'type'
|
33
|
+
:'type' => :'type',
|
34
|
+
:'group' => :'group'
|
30
35
|
}
|
31
36
|
end
|
32
37
|
|
@@ -38,13 +43,15 @@ module Dropbox::Sign
|
|
38
43
|
# Attribute type mapping.
|
39
44
|
def self.openapi_types
|
40
45
|
{
|
41
|
-
:'type' => :'String'
|
46
|
+
:'type' => :'String',
|
47
|
+
:'group' => :'String'
|
42
48
|
}
|
43
49
|
end
|
44
50
|
|
45
51
|
# List of attributes with nullable: true
|
46
52
|
def self.openapi_nullable
|
47
53
|
Set.new([
|
54
|
+
:'group'
|
48
55
|
])
|
49
56
|
end
|
50
57
|
|
@@ -67,7 +74,7 @@ module Dropbox::Sign
|
|
67
74
|
# @param [Object] data Data to be converted
|
68
75
|
# @return [TemplateResponseDocumentFormFieldDateSigned]
|
69
76
|
def self.init(data)
|
70
|
-
|
77
|
+
ApiClient.default.convert_to_type(
|
71
78
|
data,
|
72
79
|
"TemplateResponseDocumentFormFieldDateSigned"
|
73
80
|
) || TemplateResponseDocumentFormFieldDateSigned.new
|
@@ -96,6 +103,10 @@ module Dropbox::Sign
|
|
96
103
|
else
|
97
104
|
self.type = 'date_signed'
|
98
105
|
end
|
106
|
+
|
107
|
+
if attributes.key?(:'group')
|
108
|
+
self.group = attributes[:'group']
|
109
|
+
end
|
99
110
|
end
|
100
111
|
|
101
112
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -121,7 +132,8 @@ module Dropbox::Sign
|
|
121
132
|
def ==(o)
|
122
133
|
return true if self.equal?(o)
|
123
134
|
self.class == o.class &&
|
124
|
-
type == o.type &&
|
135
|
+
type == o.type &&
|
136
|
+
group == o.group && super(o)
|
125
137
|
end
|
126
138
|
|
127
139
|
# @see the `==` method
|
@@ -133,7 +145,7 @@ module Dropbox::Sign
|
|
133
145
|
# Calculates hash code according to all attributes.
|
134
146
|
# @return [Integer] Hash code
|
135
147
|
def hash
|
136
|
-
[type].hash
|
148
|
+
[type, group].hash
|
137
149
|
end
|
138
150
|
|
139
151
|
# Builds the object from hash
|
@@ -254,7 +266,5 @@ module Dropbox::Sign
|
|
254
266
|
value
|
255
267
|
end
|
256
268
|
end
|
257
|
-
|
258
269
|
end
|
259
|
-
|
260
270
|
end
|
@@ -23,10 +23,15 @@ module Dropbox::Sign
|
|
23
23
|
# @return [String]
|
24
24
|
attr_accessor :type
|
25
25
|
|
26
|
+
# The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.
|
27
|
+
# @return [String, nil]
|
28
|
+
attr_accessor :group
|
29
|
+
|
26
30
|
# Attribute mapping from ruby-style variable name to JSON key.
|
27
31
|
def self.attribute_map
|
28
32
|
{
|
29
|
-
:'type' => :'type'
|
33
|
+
:'type' => :'type',
|
34
|
+
:'group' => :'group'
|
30
35
|
}
|
31
36
|
end
|
32
37
|
|
@@ -38,13 +43,15 @@ module Dropbox::Sign
|
|
38
43
|
# Attribute type mapping.
|
39
44
|
def self.openapi_types
|
40
45
|
{
|
41
|
-
:'type' => :'String'
|
46
|
+
:'type' => :'String',
|
47
|
+
:'group' => :'String'
|
42
48
|
}
|
43
49
|
end
|
44
50
|
|
45
51
|
# List of attributes with nullable: true
|
46
52
|
def self.openapi_nullable
|
47
53
|
Set.new([
|
54
|
+
:'group'
|
48
55
|
])
|
49
56
|
end
|
50
57
|
|
@@ -67,7 +74,7 @@ module Dropbox::Sign
|
|
67
74
|
# @param [Object] data Data to be converted
|
68
75
|
# @return [TemplateResponseDocumentFormFieldDropdown]
|
69
76
|
def self.init(data)
|
70
|
-
|
77
|
+
ApiClient.default.convert_to_type(
|
71
78
|
data,
|
72
79
|
"TemplateResponseDocumentFormFieldDropdown"
|
73
80
|
) || TemplateResponseDocumentFormFieldDropdown.new
|
@@ -96,6 +103,10 @@ module Dropbox::Sign
|
|
96
103
|
else
|
97
104
|
self.type = 'dropdown'
|
98
105
|
end
|
106
|
+
|
107
|
+
if attributes.key?(:'group')
|
108
|
+
self.group = attributes[:'group']
|
109
|
+
end
|
99
110
|
end
|
100
111
|
|
101
112
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -121,7 +132,8 @@ module Dropbox::Sign
|
|
121
132
|
def ==(o)
|
122
133
|
return true if self.equal?(o)
|
123
134
|
self.class == o.class &&
|
124
|
-
type == o.type &&
|
135
|
+
type == o.type &&
|
136
|
+
group == o.group && super(o)
|
125
137
|
end
|
126
138
|
|
127
139
|
# @see the `==` method
|
@@ -133,7 +145,7 @@ module Dropbox::Sign
|
|
133
145
|
# Calculates hash code according to all attributes.
|
134
146
|
# @return [Integer] Hash code
|
135
147
|
def hash
|
136
|
-
[type].hash
|
148
|
+
[type, group].hash
|
137
149
|
end
|
138
150
|
|
139
151
|
# Builds the object from hash
|
@@ -254,7 +266,5 @@ module Dropbox::Sign
|
|
254
266
|
value
|
255
267
|
end
|
256
268
|
end
|
257
|
-
|
258
269
|
end
|
259
|
-
|
260
270
|
end
|
@@ -38,6 +38,10 @@ module Dropbox::Sign
|
|
38
38
|
# @return [String]
|
39
39
|
attr_accessor :font_family
|
40
40
|
|
41
|
+
# The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.
|
42
|
+
# @return [String, nil]
|
43
|
+
attr_accessor :group
|
44
|
+
|
41
45
|
# Attribute mapping from ruby-style variable name to JSON key.
|
42
46
|
def self.attribute_map
|
43
47
|
{
|
@@ -45,7 +49,8 @@ module Dropbox::Sign
|
|
45
49
|
:'avg_text_length' => :'avg_text_length',
|
46
50
|
:'is_multiline' => :'isMultiline',
|
47
51
|
:'original_font_size' => :'originalFontSize',
|
48
|
-
:'font_family' => :'fontFamily'
|
52
|
+
:'font_family' => :'fontFamily',
|
53
|
+
:'group' => :'group'
|
49
54
|
}
|
50
55
|
end
|
51
56
|
|
@@ -61,13 +66,15 @@ module Dropbox::Sign
|
|
61
66
|
:'avg_text_length' => :'TemplateResponseFieldAvgTextLength',
|
62
67
|
:'is_multiline' => :'Boolean',
|
63
68
|
:'original_font_size' => :'Integer',
|
64
|
-
:'font_family' => :'String'
|
69
|
+
:'font_family' => :'String',
|
70
|
+
:'group' => :'String'
|
65
71
|
}
|
66
72
|
end
|
67
73
|
|
68
74
|
# List of attributes with nullable: true
|
69
75
|
def self.openapi_nullable
|
70
76
|
Set.new([
|
77
|
+
:'group'
|
71
78
|
])
|
72
79
|
end
|
73
80
|
|
@@ -90,7 +97,7 @@ module Dropbox::Sign
|
|
90
97
|
# @param [Object] data Data to be converted
|
91
98
|
# @return [TemplateResponseDocumentFormFieldHyperlink]
|
92
99
|
def self.init(data)
|
93
|
-
|
100
|
+
ApiClient.default.convert_to_type(
|
94
101
|
data,
|
95
102
|
"TemplateResponseDocumentFormFieldHyperlink"
|
96
103
|
) || TemplateResponseDocumentFormFieldHyperlink.new
|
@@ -135,6 +142,10 @@ module Dropbox::Sign
|
|
135
142
|
if attributes.key?(:'font_family')
|
136
143
|
self.font_family = attributes[:'font_family']
|
137
144
|
end
|
145
|
+
|
146
|
+
if attributes.key?(:'group')
|
147
|
+
self.group = attributes[:'group']
|
148
|
+
end
|
138
149
|
end
|
139
150
|
|
140
151
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -164,7 +175,8 @@ module Dropbox::Sign
|
|
164
175
|
avg_text_length == o.avg_text_length &&
|
165
176
|
is_multiline == o.is_multiline &&
|
166
177
|
original_font_size == o.original_font_size &&
|
167
|
-
font_family == o.font_family &&
|
178
|
+
font_family == o.font_family &&
|
179
|
+
group == o.group && super(o)
|
168
180
|
end
|
169
181
|
|
170
182
|
# @see the `==` method
|
@@ -176,7 +188,7 @@ module Dropbox::Sign
|
|
176
188
|
# Calculates hash code according to all attributes.
|
177
189
|
# @return [Integer] Hash code
|
178
190
|
def hash
|
179
|
-
[type, avg_text_length, is_multiline, original_font_size, font_family].hash
|
191
|
+
[type, avg_text_length, is_multiline, original_font_size, font_family, group].hash
|
180
192
|
end
|
181
193
|
|
182
194
|
# Builds the object from hash
|
@@ -297,7 +309,5 @@ module Dropbox::Sign
|
|
297
309
|
value
|
298
310
|
end
|
299
311
|
end
|
300
|
-
|
301
312
|
end
|
302
|
-
|
303
313
|
end
|
@@ -23,10 +23,15 @@ module Dropbox::Sign
|
|
23
23
|
# @return [String]
|
24
24
|
attr_accessor :type
|
25
25
|
|
26
|
+
# The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.
|
27
|
+
# @return [String, nil]
|
28
|
+
attr_accessor :group
|
29
|
+
|
26
30
|
# Attribute mapping from ruby-style variable name to JSON key.
|
27
31
|
def self.attribute_map
|
28
32
|
{
|
29
|
-
:'type' => :'type'
|
33
|
+
:'type' => :'type',
|
34
|
+
:'group' => :'group'
|
30
35
|
}
|
31
36
|
end
|
32
37
|
|
@@ -38,13 +43,15 @@ module Dropbox::Sign
|
|
38
43
|
# Attribute type mapping.
|
39
44
|
def self.openapi_types
|
40
45
|
{
|
41
|
-
:'type' => :'String'
|
46
|
+
:'type' => :'String',
|
47
|
+
:'group' => :'String'
|
42
48
|
}
|
43
49
|
end
|
44
50
|
|
45
51
|
# List of attributes with nullable: true
|
46
52
|
def self.openapi_nullable
|
47
53
|
Set.new([
|
54
|
+
:'group'
|
48
55
|
])
|
49
56
|
end
|
50
57
|
|
@@ -67,7 +74,7 @@ module Dropbox::Sign
|
|
67
74
|
# @param [Object] data Data to be converted
|
68
75
|
# @return [TemplateResponseDocumentFormFieldInitials]
|
69
76
|
def self.init(data)
|
70
|
-
|
77
|
+
ApiClient.default.convert_to_type(
|
71
78
|
data,
|
72
79
|
"TemplateResponseDocumentFormFieldInitials"
|
73
80
|
) || TemplateResponseDocumentFormFieldInitials.new
|
@@ -96,6 +103,10 @@ module Dropbox::Sign
|
|
96
103
|
else
|
97
104
|
self.type = 'initials'
|
98
105
|
end
|
106
|
+
|
107
|
+
if attributes.key?(:'group')
|
108
|
+
self.group = attributes[:'group']
|
109
|
+
end
|
99
110
|
end
|
100
111
|
|
101
112
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -121,7 +132,8 @@ module Dropbox::Sign
|
|
121
132
|
def ==(o)
|
122
133
|
return true if self.equal?(o)
|
123
134
|
self.class == o.class &&
|
124
|
-
type == o.type &&
|
135
|
+
type == o.type &&
|
136
|
+
group == o.group && super(o)
|
125
137
|
end
|
126
138
|
|
127
139
|
# @see the `==` method
|
@@ -133,7 +145,7 @@ module Dropbox::Sign
|
|
133
145
|
# Calculates hash code according to all attributes.
|
134
146
|
# @return [Integer] Hash code
|
135
147
|
def hash
|
136
|
-
[type].hash
|
148
|
+
[type, group].hash
|
137
149
|
end
|
138
150
|
|
139
151
|
# Builds the object from hash
|
@@ -254,7 +266,5 @@ module Dropbox::Sign
|
|
254
266
|
value
|
255
267
|
end
|
256
268
|
end
|
257
|
-
|
258
269
|
end
|
259
|
-
|
260
270
|
end
|
@@ -23,10 +23,15 @@ module Dropbox::Sign
|
|
23
23
|
# @return [String]
|
24
24
|
attr_accessor :type
|
25
25
|
|
26
|
+
# The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.
|
27
|
+
# @return [String]
|
28
|
+
attr_accessor :group
|
29
|
+
|
26
30
|
# Attribute mapping from ruby-style variable name to JSON key.
|
27
31
|
def self.attribute_map
|
28
32
|
{
|
29
|
-
:'type' => :'type'
|
33
|
+
:'type' => :'type',
|
34
|
+
:'group' => :'group'
|
30
35
|
}
|
31
36
|
end
|
32
37
|
|
@@ -38,7 +43,8 @@ module Dropbox::Sign
|
|
38
43
|
# Attribute type mapping.
|
39
44
|
def self.openapi_types
|
40
45
|
{
|
41
|
-
:'type' => :'String'
|
46
|
+
:'type' => :'String',
|
47
|
+
:'group' => :'String'
|
42
48
|
}
|
43
49
|
end
|
44
50
|
|
@@ -67,7 +73,7 @@ module Dropbox::Sign
|
|
67
73
|
# @param [Object] data Data to be converted
|
68
74
|
# @return [TemplateResponseDocumentFormFieldRadio]
|
69
75
|
def self.init(data)
|
70
|
-
|
76
|
+
ApiClient.default.convert_to_type(
|
71
77
|
data,
|
72
78
|
"TemplateResponseDocumentFormFieldRadio"
|
73
79
|
) || TemplateResponseDocumentFormFieldRadio.new
|
@@ -96,6 +102,10 @@ module Dropbox::Sign
|
|
96
102
|
else
|
97
103
|
self.type = 'radio'
|
98
104
|
end
|
105
|
+
|
106
|
+
if attributes.key?(:'group')
|
107
|
+
self.group = attributes[:'group']
|
108
|
+
end
|
99
109
|
end
|
100
110
|
|
101
111
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -106,6 +116,10 @@ module Dropbox::Sign
|
|
106
116
|
invalid_properties.push('invalid value for "type", type cannot be nil.')
|
107
117
|
end
|
108
118
|
|
119
|
+
if @group.nil?
|
120
|
+
invalid_properties.push('invalid value for "group", group cannot be nil.')
|
121
|
+
end
|
122
|
+
|
109
123
|
invalid_properties
|
110
124
|
end
|
111
125
|
|
@@ -113,6 +127,7 @@ module Dropbox::Sign
|
|
113
127
|
# @return true if the model is valid
|
114
128
|
def valid?
|
115
129
|
return false if @type.nil?
|
130
|
+
return false if @group.nil?
|
116
131
|
true && super
|
117
132
|
end
|
118
133
|
|
@@ -121,7 +136,8 @@ module Dropbox::Sign
|
|
121
136
|
def ==(o)
|
122
137
|
return true if self.equal?(o)
|
123
138
|
self.class == o.class &&
|
124
|
-
type == o.type &&
|
139
|
+
type == o.type &&
|
140
|
+
group == o.group && super(o)
|
125
141
|
end
|
126
142
|
|
127
143
|
# @see the `==` method
|
@@ -133,7 +149,7 @@ module Dropbox::Sign
|
|
133
149
|
# Calculates hash code according to all attributes.
|
134
150
|
# @return [Integer] Hash code
|
135
151
|
def hash
|
136
|
-
[type].hash
|
152
|
+
[type, group].hash
|
137
153
|
end
|
138
154
|
|
139
155
|
# Builds the object from hash
|
@@ -254,7 +270,5 @@ module Dropbox::Sign
|
|
254
270
|
value
|
255
271
|
end
|
256
272
|
end
|
257
|
-
|
258
273
|
end
|
259
|
-
|
260
274
|
end
|
@@ -23,10 +23,15 @@ module Dropbox::Sign
|
|
23
23
|
# @return [String]
|
24
24
|
attr_accessor :type
|
25
25
|
|
26
|
+
# The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.
|
27
|
+
# @return [String, nil]
|
28
|
+
attr_accessor :group
|
29
|
+
|
26
30
|
# Attribute mapping from ruby-style variable name to JSON key.
|
27
31
|
def self.attribute_map
|
28
32
|
{
|
29
|
-
:'type' => :'type'
|
33
|
+
:'type' => :'type',
|
34
|
+
:'group' => :'group'
|
30
35
|
}
|
31
36
|
end
|
32
37
|
|
@@ -38,13 +43,15 @@ module Dropbox::Sign
|
|
38
43
|
# Attribute type mapping.
|
39
44
|
def self.openapi_types
|
40
45
|
{
|
41
|
-
:'type' => :'String'
|
46
|
+
:'type' => :'String',
|
47
|
+
:'group' => :'String'
|
42
48
|
}
|
43
49
|
end
|
44
50
|
|
45
51
|
# List of attributes with nullable: true
|
46
52
|
def self.openapi_nullable
|
47
53
|
Set.new([
|
54
|
+
:'group'
|
48
55
|
])
|
49
56
|
end
|
50
57
|
|
@@ -67,7 +74,7 @@ module Dropbox::Sign
|
|
67
74
|
# @param [Object] data Data to be converted
|
68
75
|
# @return [TemplateResponseDocumentFormFieldSignature]
|
69
76
|
def self.init(data)
|
70
|
-
|
77
|
+
ApiClient.default.convert_to_type(
|
71
78
|
data,
|
72
79
|
"TemplateResponseDocumentFormFieldSignature"
|
73
80
|
) || TemplateResponseDocumentFormFieldSignature.new
|
@@ -96,6 +103,10 @@ module Dropbox::Sign
|
|
96
103
|
else
|
97
104
|
self.type = 'signature'
|
98
105
|
end
|
106
|
+
|
107
|
+
if attributes.key?(:'group')
|
108
|
+
self.group = attributes[:'group']
|
109
|
+
end
|
99
110
|
end
|
100
111
|
|
101
112
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -121,7 +132,8 @@ module Dropbox::Sign
|
|
121
132
|
def ==(o)
|
122
133
|
return true if self.equal?(o)
|
123
134
|
self.class == o.class &&
|
124
|
-
type == o.type &&
|
135
|
+
type == o.type &&
|
136
|
+
group == o.group && super(o)
|
125
137
|
end
|
126
138
|
|
127
139
|
# @see the `==` method
|
@@ -133,7 +145,7 @@ module Dropbox::Sign
|
|
133
145
|
# Calculates hash code according to all attributes.
|
134
146
|
# @return [Integer] Hash code
|
135
147
|
def hash
|
136
|
-
[type].hash
|
148
|
+
[type, group].hash
|
137
149
|
end
|
138
150
|
|
139
151
|
# Builds the object from hash
|
@@ -254,7 +266,5 @@ module Dropbox::Sign
|
|
254
266
|
value
|
255
267
|
end
|
256
268
|
end
|
257
|
-
|
258
269
|
end
|
259
|
-
|
260
270
|
end
|