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
@@ -58,7 +58,7 @@ module Dropbox::Sign
|
|
58
58
|
# HTTP header 'Content-Type'
|
59
59
|
content_type = @api_client.select_header_content_type(['application/json', 'multipart/form-data'])
|
60
60
|
if !content_type.nil?
|
61
|
-
|
61
|
+
header_params['Content-Type'] = content_type
|
62
62
|
end
|
63
63
|
|
64
64
|
post_body = {}
|
@@ -167,7 +167,7 @@ module Dropbox::Sign
|
|
167
167
|
# HTTP header 'Content-Type'
|
168
168
|
content_type = @api_client.select_header_content_type(['application/json', 'multipart/form-data'])
|
169
169
|
if !content_type.nil?
|
170
|
-
|
170
|
+
header_params['Content-Type'] = content_type
|
171
171
|
end
|
172
172
|
|
173
173
|
post_body = {}
|
@@ -241,7 +241,7 @@ module Dropbox::Sign
|
|
241
241
|
end
|
242
242
|
|
243
243
|
# Cancel Incomplete Signature Request
|
244
|
-
# Cancels an incomplete signature request. This action is **not reversible**. The request will be canceled and signers will no longer be able to sign. If they try to access the signature request they will receive a HTTP 410 status code indicating that the resource has been deleted. Cancelation is asynchronous and a successful call to this endpoint will return an empty 200 OK response if the signature request is eligible to be canceled and has been successfully queued. This 200 OK response does not indicate a successful cancelation of the signature request itself. The cancelation is confirmed via the `signature_request_canceled` event. It is recommended that a
|
244
|
+
# Cancels an incomplete signature request. This action is **not reversible**. The request will be canceled and signers will no longer be able to sign. If they try to access the signature request they will receive a HTTP 410 status code indicating that the resource has been deleted. Cancelation is asynchronous and a successful call to this endpoint will return an empty 200 OK response if the signature request is eligible to be canceled and has been successfully queued. This 200 OK response does not indicate a successful cancelation of the signature request itself. The cancelation is confirmed via the `signature_request_canceled` event. It is recommended that a [callback handler](/api/reference/tag/Callbacks-and-Events) be implemented to listen for the `signature_request_canceled` event. This callback will be sent only when the cancelation has completed successfully. If a callback handler has been configured and the event has not been received within 60 minutes of making the call, check the status of the request in the [API Dashboard](https://app.hellosign.com/apidashboard) and retry the cancelation if necessary. To be eligible for cancelation, a signature request must have been sent successfully, must not yet have been signed by all signers, and you must either be the sender or own the API app under which it was sent. A partially signed signature request can be canceled. **NOTE:** To remove your access to a completed signature request, use the endpoint: `POST /signature_request/remove/[:signature_request_id]`.
|
245
245
|
# @param signature_request_id [String] The id of the incomplete SignatureRequest to cancel.
|
246
246
|
# @param [Hash] opts the optional parameters
|
247
247
|
# @return [nil]
|
@@ -251,7 +251,7 @@ module Dropbox::Sign
|
|
251
251
|
end
|
252
252
|
|
253
253
|
# Cancel Incomplete Signature Request
|
254
|
-
# Cancels an incomplete signature request. This action is **not reversible**. The request will be canceled and signers will no longer be able to sign. If they try to access the signature request they will receive a HTTP 410 status code indicating that the resource has been deleted. Cancelation is asynchronous and a successful call to this endpoint will return an empty 200 OK response if the signature request is eligible to be canceled and has been successfully queued. This 200 OK response does not indicate a successful cancelation of the signature request itself. The cancelation is confirmed via the `signature_request_canceled` event. It is recommended that a
|
254
|
+
# Cancels an incomplete signature request. This action is **not reversible**. The request will be canceled and signers will no longer be able to sign. If they try to access the signature request they will receive a HTTP 410 status code indicating that the resource has been deleted. Cancelation is asynchronous and a successful call to this endpoint will return an empty 200 OK response if the signature request is eligible to be canceled and has been successfully queued. This 200 OK response does not indicate a successful cancelation of the signature request itself. The cancelation is confirmed via the `signature_request_canceled` event. It is recommended that a [callback handler](/api/reference/tag/Callbacks-and-Events) be implemented to listen for the `signature_request_canceled` event. This callback will be sent only when the cancelation has completed successfully. If a callback handler has been configured and the event has not been received within 60 minutes of making the call, check the status of the request in the [API Dashboard](https://app.hellosign.com/apidashboard) and retry the cancelation if necessary. To be eligible for cancelation, a signature request must have been sent successfully, must not yet have been signed by all signers, and you must either be the sender or own the API app under which it was sent. A partially signed signature request can be canceled. **NOTE:** To remove your access to a completed signature request, use the endpoint: `POST /signature_request/remove/[:signature_request_id]`.
|
255
255
|
# @param signature_request_id [String] The id of the incomplete SignatureRequest to cancel.
|
256
256
|
# @param [Hash] opts the optional parameters
|
257
257
|
# @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
|
@@ -343,7 +343,7 @@ module Dropbox::Sign
|
|
343
343
|
# HTTP header 'Content-Type'
|
344
344
|
content_type = @api_client.select_header_content_type(['application/json', 'multipart/form-data'])
|
345
345
|
if !content_type.nil?
|
346
|
-
|
346
|
+
header_params['Content-Type'] = content_type
|
347
347
|
end
|
348
348
|
|
349
349
|
post_body = {}
|
@@ -452,7 +452,7 @@ module Dropbox::Sign
|
|
452
452
|
# HTTP header 'Content-Type'
|
453
453
|
content_type = @api_client.select_header_content_type(['application/json', 'multipart/form-data'])
|
454
454
|
if !content_type.nil?
|
455
|
-
|
455
|
+
header_params['Content-Type'] = content_type
|
456
456
|
end
|
457
457
|
|
458
458
|
post_body = {}
|
@@ -1147,7 +1147,7 @@ module Dropbox::Sign
|
|
1147
1147
|
# HTTP header 'Content-Type'
|
1148
1148
|
content_type = @api_client.select_header_content_type(['application/json'])
|
1149
1149
|
if !content_type.nil?
|
1150
|
-
|
1150
|
+
header_params['Content-Type'] = content_type
|
1151
1151
|
end
|
1152
1152
|
|
1153
1153
|
post_body = {}
|
@@ -1323,7 +1323,7 @@ module Dropbox::Sign
|
|
1323
1323
|
# HTTP header 'Content-Type'
|
1324
1324
|
content_type = @api_client.select_header_content_type(['application/json', 'multipart/form-data'])
|
1325
1325
|
if !content_type.nil?
|
1326
|
-
|
1326
|
+
header_params['Content-Type'] = content_type
|
1327
1327
|
end
|
1328
1328
|
|
1329
1329
|
post_body = {}
|
@@ -1432,7 +1432,7 @@ module Dropbox::Sign
|
|
1432
1432
|
# HTTP header 'Content-Type'
|
1433
1433
|
content_type = @api_client.select_header_content_type(['application/json', 'multipart/form-data'])
|
1434
1434
|
if !content_type.nil?
|
1435
|
-
|
1435
|
+
header_params['Content-Type'] = content_type
|
1436
1436
|
end
|
1437
1437
|
|
1438
1438
|
post_body = {}
|
@@ -1547,7 +1547,7 @@ module Dropbox::Sign
|
|
1547
1547
|
# HTTP header 'Content-Type'
|
1548
1548
|
content_type = @api_client.select_header_content_type(['application/json'])
|
1549
1549
|
if !content_type.nil?
|
1550
|
-
|
1550
|
+
header_params['Content-Type'] = content_type
|
1551
1551
|
end
|
1552
1552
|
|
1553
1553
|
post_body = {}
|
@@ -61,7 +61,7 @@ module Dropbox::Sign
|
|
61
61
|
# HTTP header 'Content-Type'
|
62
62
|
content_type = @api_client.select_header_content_type(['application/json'])
|
63
63
|
if !content_type.nil?
|
64
|
-
|
64
|
+
header_params['Content-Type'] = content_type
|
65
65
|
end
|
66
66
|
|
67
67
|
post_body = {}
|
@@ -170,7 +170,7 @@ module Dropbox::Sign
|
|
170
170
|
# HTTP header 'Content-Type'
|
171
171
|
content_type = @api_client.select_header_content_type(['application/json'])
|
172
172
|
if !content_type.nil?
|
173
|
-
|
173
|
+
header_params['Content-Type'] = content_type
|
174
174
|
end
|
175
175
|
|
176
176
|
post_body = {}
|
@@ -718,7 +718,7 @@ module Dropbox::Sign
|
|
718
718
|
# HTTP header 'Content-Type'
|
719
719
|
content_type = @api_client.select_header_content_type(['application/json'])
|
720
720
|
if !content_type.nil?
|
721
|
-
|
721
|
+
header_params['Content-Type'] = content_type
|
722
722
|
end
|
723
723
|
|
724
724
|
post_body = {}
|
@@ -935,7 +935,7 @@ module Dropbox::Sign
|
|
935
935
|
# HTTP header 'Content-Type'
|
936
936
|
content_type = @api_client.select_header_content_type(['application/json'])
|
937
937
|
if !content_type.nil?
|
938
|
-
|
938
|
+
header_params['Content-Type'] = content_type
|
939
939
|
end
|
940
940
|
|
941
941
|
post_body = {}
|
@@ -64,7 +64,7 @@ module Dropbox::Sign
|
|
64
64
|
# HTTP header 'Content-Type'
|
65
65
|
content_type = @api_client.select_header_content_type(['application/json'])
|
66
66
|
if !content_type.nil?
|
67
|
-
|
67
|
+
header_params['Content-Type'] = content_type
|
68
68
|
end
|
69
69
|
|
70
70
|
post_body = {}
|
@@ -137,7 +137,7 @@ module Dropbox::Sign
|
|
137
137
|
return data, status_code, headers
|
138
138
|
end
|
139
139
|
|
140
|
-
# Create
|
140
|
+
# Create Template
|
141
141
|
# Creates a template that can then be used.
|
142
142
|
# @param template_create_request [TemplateCreateRequest]
|
143
143
|
# @param [Hash] opts the optional parameters
|
@@ -147,7 +147,7 @@ module Dropbox::Sign
|
|
147
147
|
data
|
148
148
|
end
|
149
149
|
|
150
|
-
# Create
|
150
|
+
# Create Template
|
151
151
|
# Creates a template that can then be used.
|
152
152
|
# @param template_create_request [TemplateCreateRequest]
|
153
153
|
# @param [Hash] opts the optional parameters
|
@@ -173,7 +173,7 @@ module Dropbox::Sign
|
|
173
173
|
# HTTP header 'Content-Type'
|
174
174
|
content_type = @api_client.select_header_content_type(['application/json', 'multipart/form-data'])
|
175
175
|
if !content_type.nil?
|
176
|
-
|
176
|
+
header_params['Content-Type'] = content_type
|
177
177
|
end
|
178
178
|
|
179
179
|
post_body = {}
|
@@ -282,7 +282,7 @@ module Dropbox::Sign
|
|
282
282
|
# HTTP header 'Content-Type'
|
283
283
|
content_type = @api_client.select_header_content_type(['application/json', 'multipart/form-data'])
|
284
284
|
if !content_type.nil?
|
285
|
-
|
285
|
+
header_params['Content-Type'] = content_type
|
286
286
|
end
|
287
287
|
|
288
288
|
post_body = {}
|
@@ -958,7 +958,7 @@ module Dropbox::Sign
|
|
958
958
|
# HTTP header 'Content-Type'
|
959
959
|
content_type = @api_client.select_header_content_type(['application/json'])
|
960
960
|
if !content_type.nil?
|
961
|
-
|
961
|
+
header_params['Content-Type'] = content_type
|
962
962
|
end
|
963
963
|
|
964
964
|
post_body = {}
|
@@ -1073,7 +1073,7 @@ module Dropbox::Sign
|
|
1073
1073
|
# HTTP header 'Content-Type'
|
1074
1074
|
content_type = @api_client.select_header_content_type(['application/json', 'multipart/form-data'])
|
1075
1075
|
if !content_type.nil?
|
1076
|
-
|
1076
|
+
header_params['Content-Type'] = content_type
|
1077
1077
|
end
|
1078
1078
|
|
1079
1079
|
post_body = {}
|
@@ -58,7 +58,7 @@ module Dropbox::Sign
|
|
58
58
|
# HTTP header 'Content-Type'
|
59
59
|
content_type = @api_client.select_header_content_type(['application/json', 'multipart/form-data'])
|
60
60
|
if !content_type.nil?
|
61
|
-
|
61
|
+
header_params['Content-Type'] = content_type
|
62
62
|
end
|
63
63
|
|
64
64
|
post_body = {}
|
@@ -167,7 +167,7 @@ module Dropbox::Sign
|
|
167
167
|
# HTTP header 'Content-Type'
|
168
168
|
content_type = @api_client.select_header_content_type(['application/json', 'multipart/form-data'])
|
169
169
|
if !content_type.nil?
|
170
|
-
|
170
|
+
header_params['Content-Type'] = content_type
|
171
171
|
end
|
172
172
|
|
173
173
|
post_body = {}
|
@@ -276,7 +276,7 @@ module Dropbox::Sign
|
|
276
276
|
# HTTP header 'Content-Type'
|
277
277
|
content_type = @api_client.select_header_content_type(['application/json', 'multipart/form-data'])
|
278
278
|
if !content_type.nil?
|
279
|
-
|
279
|
+
header_params['Content-Type'] = content_type
|
280
280
|
end
|
281
281
|
|
282
282
|
post_body = {}
|
@@ -391,7 +391,7 @@ module Dropbox::Sign
|
|
391
391
|
# HTTP header 'Content-Type'
|
392
392
|
content_type = @api_client.select_header_content_type(['application/json'])
|
393
393
|
if !content_type.nil?
|
394
|
-
|
394
|
+
header_params['Content-Type'] = content_type
|
395
395
|
end
|
396
396
|
|
397
397
|
post_body = {}
|
@@ -245,7 +245,7 @@ module Dropbox::Sign
|
|
245
245
|
end
|
246
246
|
|
247
247
|
# Returns Auth Settings hash for api client.
|
248
|
-
def auth_settings
|
248
|
+
def auth_settings
|
249
249
|
result = {}
|
250
250
|
if basic_auth_token
|
251
251
|
result['api_key'] = {
|
@@ -264,7 +264,7 @@ module Dropbox::Sign
|
|
264
264
|
value: "Bearer #{access_token}"
|
265
265
|
}
|
266
266
|
end
|
267
|
-
|
267
|
+
result
|
268
268
|
end
|
269
269
|
|
270
270
|
# Returns an array of Server setting
|
@@ -327,7 +327,5 @@ module Dropbox::Sign
|
|
327
327
|
|
328
328
|
url
|
329
329
|
end
|
330
|
-
|
331
|
-
|
332
330
|
end
|
333
331
|
end
|
@@ -33,7 +33,7 @@ module Dropbox::Sign
|
|
33
33
|
"#{event_callback.event.event_time}#{event_callback.event.event_type}",
|
34
34
|
)
|
35
35
|
|
36
|
-
|
36
|
+
event_callback.event.event_hash === hash
|
37
37
|
end
|
38
38
|
|
39
39
|
# Identifies the callback type, one of "account_callback" or "app_callback".
|
@@ -48,7 +48,7 @@ module Dropbox::Sign
|
|
48
48
|
return EVENT_TYPE_ACCOUNT_CALLBACK
|
49
49
|
end
|
50
50
|
|
51
|
-
|
51
|
+
EVENT_TYPE_APP_CALLBACK
|
52
52
|
end
|
53
53
|
end
|
54
54
|
end
|
@@ -84,7 +84,7 @@ module Dropbox::Sign
|
|
84
84
|
# @param [Object] data Data to be converted
|
85
85
|
# @return [AccountCreateRequest]
|
86
86
|
def self.init(data)
|
87
|
-
|
87
|
+
ApiClient.default.convert_to_type(
|
88
88
|
data,
|
89
89
|
"AccountCreateRequest"
|
90
90
|
) || AccountCreateRequest.new
|
@@ -280,7 +280,5 @@ module Dropbox::Sign
|
|
280
280
|
value
|
281
281
|
end
|
282
282
|
end
|
283
|
-
|
284
283
|
end
|
285
|
-
|
286
284
|
end
|
@@ -76,7 +76,7 @@ module Dropbox::Sign
|
|
76
76
|
# @param [Object] data Data to be converted
|
77
77
|
# @return [AccountCreateResponse]
|
78
78
|
def self.init(data)
|
79
|
-
|
79
|
+
ApiClient.default.convert_to_type(
|
80
80
|
data,
|
81
81
|
"AccountCreateResponse"
|
82
82
|
) || AccountCreateResponse.new
|
@@ -269,7 +269,5 @@ module Dropbox::Sign
|
|
269
269
|
value
|
270
270
|
end
|
271
271
|
end
|
272
|
-
|
273
272
|
end
|
274
|
-
|
275
273
|
end
|
@@ -71,7 +71,7 @@ module Dropbox::Sign
|
|
71
71
|
# @param [Object] data Data to be converted
|
72
72
|
# @return [AccountGetResponse]
|
73
73
|
def self.init(data)
|
74
|
-
|
74
|
+
ApiClient.default.convert_to_type(
|
75
75
|
data,
|
76
76
|
"AccountGetResponse"
|
77
77
|
) || AccountGetResponse.new
|
@@ -259,7 +259,5 @@ module Dropbox::Sign
|
|
259
259
|
value
|
260
260
|
end
|
261
261
|
end
|
262
|
-
|
263
262
|
end
|
264
|
-
|
265
263
|
end
|
@@ -128,7 +128,7 @@ module Dropbox::Sign
|
|
128
128
|
# @param [Object] data Data to be converted
|
129
129
|
# @return [AccountResponse]
|
130
130
|
def self.init(data)
|
131
|
-
|
131
|
+
ApiClient.default.convert_to_type(
|
132
132
|
data,
|
133
133
|
"AccountResponse"
|
134
134
|
) || AccountResponse.new
|
@@ -354,7 +354,5 @@ module Dropbox::Sign
|
|
354
354
|
value
|
355
355
|
end
|
356
356
|
end
|
357
|
-
|
358
357
|
end
|
359
|
-
|
360
358
|
end
|
@@ -35,7 +35,7 @@ module Dropbox::Sign
|
|
35
35
|
# @return [Integer, nil]
|
36
36
|
attr_accessor :templates_left
|
37
37
|
|
38
|
-
# SMS verifications
|
38
|
+
# SMS verifications remaining.
|
39
39
|
# @return [Integer, nil]
|
40
40
|
attr_accessor :sms_verifications_left
|
41
41
|
|
@@ -103,7 +103,7 @@ module Dropbox::Sign
|
|
103
103
|
# @param [Object] data Data to be converted
|
104
104
|
# @return [AccountResponseQuotas]
|
105
105
|
def self.init(data)
|
106
|
-
|
106
|
+
ApiClient.default.convert_to_type(
|
107
107
|
data,
|
108
108
|
"AccountResponseQuotas"
|
109
109
|
) || AccountResponseQuotas.new
|
@@ -304,7 +304,5 @@ module Dropbox::Sign
|
|
304
304
|
value
|
305
305
|
end
|
306
306
|
end
|
307
|
-
|
308
307
|
end
|
309
|
-
|
310
308
|
end
|
@@ -68,7 +68,7 @@ module Dropbox::Sign
|
|
68
68
|
# @param [Object] data Data to be converted
|
69
69
|
# @return [AccountResponseUsage]
|
70
70
|
def self.init(data)
|
71
|
-
|
71
|
+
ApiClient.default.convert_to_type(
|
72
72
|
data,
|
73
73
|
"AccountResponseUsage"
|
74
74
|
) || AccountResponseUsage.new
|
@@ -244,7 +244,5 @@ module Dropbox::Sign
|
|
244
244
|
value
|
245
245
|
end
|
246
246
|
end
|
247
|
-
|
248
247
|
end
|
249
|
-
|
250
248
|
end
|
@@ -79,7 +79,7 @@ module Dropbox::Sign
|
|
79
79
|
# @param [Object] data Data to be converted
|
80
80
|
# @return [AccountUpdateRequest]
|
81
81
|
def self.init(data)
|
82
|
-
|
82
|
+
ApiClient.default.convert_to_type(
|
83
83
|
data,
|
84
84
|
"AccountUpdateRequest"
|
85
85
|
) || AccountUpdateRequest.new
|
@@ -265,7 +265,5 @@ module Dropbox::Sign
|
|
265
265
|
value
|
266
266
|
end
|
267
267
|
end
|
268
|
-
|
269
268
|
end
|
270
|
-
|
271
269
|
end
|
@@ -66,7 +66,7 @@ module Dropbox::Sign
|
|
66
66
|
# @param [Object] data Data to be converted
|
67
67
|
# @return [AccountVerifyRequest]
|
68
68
|
def self.init(data)
|
69
|
-
|
69
|
+
ApiClient.default.convert_to_type(
|
70
70
|
data,
|
71
71
|
"AccountVerifyRequest"
|
72
72
|
) || AccountVerifyRequest.new
|
@@ -247,7 +247,5 @@ module Dropbox::Sign
|
|
247
247
|
value
|
248
248
|
end
|
249
249
|
end
|
250
|
-
|
251
250
|
end
|
252
|
-
|
253
251
|
end
|
@@ -71,7 +71,7 @@ module Dropbox::Sign
|
|
71
71
|
# @param [Object] data Data to be converted
|
72
72
|
# @return [AccountVerifyResponse]
|
73
73
|
def self.init(data)
|
74
|
-
|
74
|
+
ApiClient.default.convert_to_type(
|
75
75
|
data,
|
76
76
|
"AccountVerifyResponse"
|
77
77
|
) || AccountVerifyResponse.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
|
@@ -66,7 +66,7 @@ module Dropbox::Sign
|
|
66
66
|
# @param [Object] data Data to be converted
|
67
67
|
# @return [AccountVerifyResponseAccount]
|
68
68
|
def self.init(data)
|
69
|
-
|
69
|
+
ApiClient.default.convert_to_type(
|
70
70
|
data,
|
71
71
|
"AccountVerifyResponseAccount"
|
72
72
|
) || AccountVerifyResponseAccount.new
|
@@ -242,7 +242,5 @@ module Dropbox::Sign
|
|
242
242
|
value
|
243
243
|
end
|
244
244
|
end
|
245
|
-
|
246
245
|
end
|
247
|
-
|
248
246
|
end
|
@@ -99,7 +99,7 @@ module Dropbox::Sign
|
|
99
99
|
# @param [Object] data Data to be converted
|
100
100
|
# @return [ApiAppCreateRequest]
|
101
101
|
def self.init(data)
|
102
|
-
|
102
|
+
ApiClient.default.convert_to_type(
|
103
103
|
data,
|
104
104
|
"ApiAppCreateRequest"
|
105
105
|
) || ApiAppCreateRequest.new
|
@@ -344,7 +344,5 @@ module Dropbox::Sign
|
|
344
344
|
value
|
345
345
|
end
|
346
346
|
end
|
347
|
-
|
348
347
|
end
|
349
|
-
|
350
348
|
end
|
@@ -71,7 +71,7 @@ module Dropbox::Sign
|
|
71
71
|
# @param [Object] data Data to be converted
|
72
72
|
# @return [ApiAppGetResponse]
|
73
73
|
def self.init(data)
|
74
|
-
|
74
|
+
ApiClient.default.convert_to_type(
|
75
75
|
data,
|
76
76
|
"ApiAppGetResponse"
|
77
77
|
) || ApiAppGetResponse.new
|
@@ -259,7 +259,5 @@ module Dropbox::Sign
|
|
259
259
|
value
|
260
260
|
end
|
261
261
|
end
|
262
|
-
|
263
262
|
end
|
264
|
-
|
265
263
|
end
|
@@ -77,7 +77,7 @@ module Dropbox::Sign
|
|
77
77
|
# @param [Object] data Data to be converted
|
78
78
|
# @return [ApiAppListResponse]
|
79
79
|
def self.init(data)
|
80
|
-
|
80
|
+
ApiClient.default.convert_to_type(
|
81
81
|
data,
|
82
82
|
"ApiAppListResponse"
|
83
83
|
) || ApiAppListResponse.new
|
@@ -277,7 +277,5 @@ module Dropbox::Sign
|
|
277
277
|
value
|
278
278
|
end
|
279
279
|
end
|
280
|
-
|
281
280
|
end
|
282
|
-
|
283
281
|
end
|
@@ -121,7 +121,7 @@ module Dropbox::Sign
|
|
121
121
|
# @param [Object] data Data to be converted
|
122
122
|
# @return [ApiAppResponse]
|
123
123
|
def self.init(data)
|
124
|
-
|
124
|
+
ApiClient.default.convert_to_type(
|
125
125
|
data,
|
126
126
|
"ApiAppResponse"
|
127
127
|
) || ApiAppResponse.new
|
@@ -344,7 +344,5 @@ module Dropbox::Sign
|
|
344
344
|
value
|
345
345
|
end
|
346
346
|
end
|
347
|
-
|
348
347
|
end
|
349
|
-
|
350
348
|
end
|
@@ -24,7 +24,7 @@ module Dropbox::Sign
|
|
24
24
|
attr_accessor :callback_url
|
25
25
|
|
26
26
|
# The app's OAuth secret, or null if the app does not belong to user.
|
27
|
-
# @return [String]
|
27
|
+
# @return [String, nil]
|
28
28
|
attr_accessor :secret
|
29
29
|
|
30
30
|
# Array of OAuth scopes used by the app.
|
@@ -63,6 +63,7 @@ module Dropbox::Sign
|
|
63
63
|
# List of attributes with nullable: true
|
64
64
|
def self.openapi_nullable
|
65
65
|
Set.new([
|
66
|
+
:'secret',
|
66
67
|
])
|
67
68
|
end
|
68
69
|
|
@@ -85,7 +86,7 @@ module Dropbox::Sign
|
|
85
86
|
# @param [Object] data Data to be converted
|
86
87
|
# @return [ApiAppResponseOAuth]
|
87
88
|
def self.init(data)
|
88
|
-
|
89
|
+
ApiClient.default.convert_to_type(
|
89
90
|
data,
|
90
91
|
"ApiAppResponseOAuth"
|
91
92
|
) || ApiAppResponseOAuth.new
|
@@ -278,7 +279,5 @@ module Dropbox::Sign
|
|
278
279
|
value
|
279
280
|
end
|
280
281
|
end
|
281
|
-
|
282
282
|
end
|
283
|
-
|
284
283
|
end
|
@@ -67,7 +67,7 @@ module Dropbox::Sign
|
|
67
67
|
# @param [Object] data Data to be converted
|
68
68
|
# @return [ApiAppResponseOptions]
|
69
69
|
def self.init(data)
|
70
|
-
|
70
|
+
ApiClient.default.convert_to_type(
|
71
71
|
data,
|
72
72
|
"ApiAppResponseOptions"
|
73
73
|
) || ApiAppResponseOptions.new
|
@@ -243,7 +243,5 @@ module Dropbox::Sign
|
|
243
243
|
value
|
244
244
|
end
|
245
245
|
end
|
246
|
-
|
247
246
|
end
|
248
|
-
|
249
247
|
end
|
@@ -73,7 +73,7 @@ module Dropbox::Sign
|
|
73
73
|
# @param [Object] data Data to be converted
|
74
74
|
# @return [ApiAppResponseOwnerAccount]
|
75
75
|
def self.init(data)
|
76
|
-
|
76
|
+
ApiClient.default.convert_to_type(
|
77
77
|
data,
|
78
78
|
"ApiAppResponseOwnerAccount"
|
79
79
|
) || ApiAppResponseOwnerAccount.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
|
@@ -131,7 +131,7 @@ module Dropbox::Sign
|
|
131
131
|
# @param [Object] data Data to be converted
|
132
132
|
# @return [ApiAppResponseWhiteLabelingOptions]
|
133
133
|
def self.init(data)
|
134
|
-
|
134
|
+
ApiClient.default.convert_to_type(
|
135
135
|
data,
|
136
136
|
"ApiAppResponseWhiteLabelingOptions"
|
137
137
|
) || ApiAppResponseWhiteLabelingOptions.new
|
@@ -372,7 +372,5 @@ module Dropbox::Sign
|
|
372
372
|
value
|
373
373
|
end
|
374
374
|
end
|
375
|
-
|
376
375
|
end
|
377
|
-
|
378
376
|
end
|
@@ -99,7 +99,7 @@ module Dropbox::Sign
|
|
99
99
|
# @param [Object] data Data to be converted
|
100
100
|
# @return [ApiAppUpdateRequest]
|
101
101
|
def self.init(data)
|
102
|
-
|
102
|
+
ApiClient.default.convert_to_type(
|
103
103
|
data,
|
104
104
|
"ApiAppUpdateRequest"
|
105
105
|
) || ApiAppUpdateRequest.new
|
@@ -322,7 +322,5 @@ module Dropbox::Sign
|
|
322
322
|
value
|
323
323
|
end
|
324
324
|
end
|
325
|
-
|
326
325
|
end
|
327
|
-
|
328
326
|
end
|
@@ -82,7 +82,7 @@ module Dropbox::Sign
|
|
82
82
|
# @param [Object] data Data to be converted
|
83
83
|
# @return [BulkSendJobGetResponse]
|
84
84
|
def self.init(data)
|
85
|
-
|
85
|
+
ApiClient.default.convert_to_type(
|
86
86
|
data,
|
87
87
|
"BulkSendJobGetResponse"
|
88
88
|
) || BulkSendJobGetResponse.new
|
@@ -292,7 +292,5 @@ module Dropbox::Sign
|
|
292
292
|
value
|
293
293
|
end
|
294
294
|
end
|
295
|
-
|
296
295
|
end
|
297
|
-
|
298
296
|
end
|
@@ -220,7 +220,7 @@ module Dropbox::Sign
|
|
220
220
|
# @param [Object] data Data to be converted
|
221
221
|
# @return [BulkSendJobGetResponseSignatureRequests]
|
222
222
|
def self.init(data)
|
223
|
-
|
223
|
+
ApiClient.default.convert_to_type(
|
224
224
|
data,
|
225
225
|
"BulkSendJobGetResponseSignatureRequests"
|
226
226
|
) || BulkSendJobGetResponseSignatureRequests.new
|
@@ -530,7 +530,5 @@ module Dropbox::Sign
|
|
530
530
|
value
|
531
531
|
end
|
532
532
|
end
|
533
|
-
|
534
533
|
end
|
535
|
-
|
536
534
|
end
|