dropbox-sign 1.5.0 → 1.6.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.lock +1 -1
- data/README.md +24 -5
- data/VERSION +1 -1
- data/docs/AccountCreateResponse.md +1 -1
- data/docs/AccountGetResponse.md +1 -1
- data/docs/ApiAppGetResponse.md +1 -1
- data/docs/ApiAppListResponse.md +2 -2
- data/docs/BulkSendJobGetResponse.md +3 -3
- data/docs/BulkSendJobListResponse.md +2 -2
- data/docs/BulkSendJobSendResponse.md +1 -1
- data/docs/EmbeddedEditUrlResponse.md +1 -1
- data/docs/EmbeddedSignUrlResponse.md +1 -1
- data/docs/FaxLineAddUserRequest.md +12 -0
- data/docs/FaxLineApi.md +503 -0
- data/docs/FaxLineAreaCodeGetCountryEnum.md +9 -0
- data/docs/FaxLineAreaCodeGetProvinceEnum.md +9 -0
- data/docs/FaxLineAreaCodeGetResponse.md +10 -0
- data/docs/FaxLineAreaCodeGetStateEnum.md +9 -0
- data/docs/FaxLineCreateRequest.md +13 -0
- data/docs/FaxLineDeleteRequest.md +10 -0
- data/docs/FaxLineListResponse.md +12 -0
- data/docs/FaxLineRemoveUserRequest.md +12 -0
- data/docs/FaxLineResponse.md +11 -0
- data/docs/FaxLineResponseFaxLine.md +13 -0
- data/docs/FileResponse.md +2 -2
- data/docs/FileResponseDataUri.md +1 -1
- data/docs/ReportCreateResponse.md +1 -1
- data/docs/SignatureRequestGetResponse.md +1 -1
- data/docs/SignatureRequestListResponse.md +2 -2
- data/docs/TeamGetInfoResponse.md +1 -1
- data/docs/TeamGetResponse.md +1 -1
- data/docs/TeamInvitesResponse.md +1 -1
- data/docs/TeamMembersResponse.md +2 -2
- data/docs/TeamSubTeamsResponse.md +2 -2
- data/docs/TemplateCreateEmbeddedDraftResponse.md +1 -1
- data/docs/TemplateCreateResponse.md +1 -1
- data/docs/TemplateEditResponse.md +1 -1
- data/docs/TemplateGetResponse.md +1 -1
- data/docs/TemplateListResponse.md +2 -2
- data/docs/TemplateUpdateFilesResponse.md +1 -1
- data/docs/UnclaimedDraftCreateResponse.md +1 -1
- data/dropbox-sign.gemspec +1 -1
- data/examples/FaxLineAddUser.rb +19 -0
- data/examples/FaxLineAreaCodeGet.rb +15 -0
- data/examples/FaxLineCreate.rb +19 -0
- data/examples/FaxLineDelete.rb +17 -0
- data/examples/FaxLineGet.rb +15 -0
- data/examples/FaxLineList.rb +15 -0
- data/examples/FaxLineRemoveUser.rb +19 -0
- data/lib/dropbox-sign/api/account_api.rb +5 -5
- data/lib/dropbox-sign/api/api_app_api.rb +6 -6
- data/lib/dropbox-sign/api/bulk_send_job_api.rb +3 -3
- data/lib/dropbox-sign/api/embedded_api.rb +3 -3
- data/lib/dropbox-sign/api/fax_line_api.rb +746 -0
- data/lib/dropbox-sign/api/o_auth_api.rb +3 -3
- data/lib/dropbox-sign/api/report_api.rb +2 -2
- data/lib/dropbox-sign/api/signature_request_api.rb +17 -17
- data/lib/dropbox-sign/api/team_api.rb +11 -11
- data/lib/dropbox-sign/api/template_api.rb +12 -12
- data/lib/dropbox-sign/api/unclaimed_draft_api.rb +5 -5
- data/lib/dropbox-sign/api_client.rb +2 -3
- data/lib/dropbox-sign/api_error.rb +5 -2
- data/lib/dropbox-sign/configuration.rb +1 -1
- data/lib/dropbox-sign/event_callback_helper.rb +1 -1
- data/lib/dropbox-sign/models/account_create_request.rb +11 -12
- data/lib/dropbox-sign/models/account_create_response.rb +16 -12
- data/lib/dropbox-sign/models/account_get_response.rb +16 -12
- data/lib/dropbox-sign/models/account_response.rb +11 -12
- data/lib/dropbox-sign/models/account_response_quotas.rb +11 -12
- data/lib/dropbox-sign/models/account_response_usage.rb +11 -12
- data/lib/dropbox-sign/models/account_update_request.rb +11 -12
- data/lib/dropbox-sign/models/account_verify_request.rb +11 -12
- data/lib/dropbox-sign/models/account_verify_response.rb +11 -12
- data/lib/dropbox-sign/models/account_verify_response_account.rb +11 -12
- data/lib/dropbox-sign/models/api_app_create_request.rb +11 -13
- data/lib/dropbox-sign/models/api_app_get_response.rb +16 -12
- data/lib/dropbox-sign/models/api_app_list_response.rb +21 -12
- data/lib/dropbox-sign/models/api_app_response.rb +11 -12
- data/lib/dropbox-sign/models/api_app_response_o_auth.rb +11 -12
- data/lib/dropbox-sign/models/api_app_response_options.rb +11 -12
- data/lib/dropbox-sign/models/api_app_response_owner_account.rb +11 -12
- data/lib/dropbox-sign/models/api_app_response_white_labeling_options.rb +11 -12
- data/lib/dropbox-sign/models/api_app_update_request.rb +11 -12
- data/lib/dropbox-sign/models/bulk_send_job_get_response.rb +26 -12
- data/lib/dropbox-sign/models/bulk_send_job_get_response_signature_requests.rb +11 -12
- data/lib/dropbox-sign/models/bulk_send_job_list_response.rb +21 -12
- data/lib/dropbox-sign/models/bulk_send_job_response.rb +11 -12
- data/lib/dropbox-sign/models/bulk_send_job_send_response.rb +16 -12
- data/lib/dropbox-sign/models/embedded_edit_url_request.rb +11 -12
- data/lib/dropbox-sign/models/embedded_edit_url_response.rb +16 -12
- data/lib/dropbox-sign/models/embedded_edit_url_response_embedded.rb +11 -12
- data/lib/dropbox-sign/models/embedded_sign_url_response.rb +16 -12
- data/lib/dropbox-sign/models/embedded_sign_url_response_embedded.rb +11 -12
- data/lib/dropbox-sign/models/error_response.rb +11 -12
- data/lib/dropbox-sign/models/error_response_error.rb +11 -12
- data/lib/dropbox-sign/models/event_callback_request.rb +11 -12
- data/lib/dropbox-sign/models/event_callback_request_event.rb +11 -12
- data/lib/dropbox-sign/models/event_callback_request_event_metadata.rb +11 -12
- data/lib/dropbox-sign/models/fax_line_add_user_request.rb +275 -0
- data/lib/dropbox-sign/models/fax_line_area_code_get_country_enum.rb +44 -0
- data/lib/dropbox-sign/models/fax_line_area_code_get_province_enum.rb +54 -0
- data/lib/dropbox-sign/models/fax_line_area_code_get_response.rb +254 -0
- data/lib/dropbox-sign/models/fax_line_area_code_get_state_enum.rb +92 -0
- data/lib/dropbox-sign/models/fax_line_create_request.rb +325 -0
- data/lib/dropbox-sign/models/fax_line_delete_request.rb +253 -0
- data/lib/dropbox-sign/models/fax_line_list_response.rb +279 -0
- data/lib/dropbox-sign/models/fax_line_remove_user_request.rb +275 -0
- data/lib/dropbox-sign/models/fax_line_response.rb +262 -0
- data/lib/dropbox-sign/models/fax_line_response_fax_line.rb +282 -0
- data/lib/dropbox-sign/models/file_response.rb +21 -12
- data/lib/dropbox-sign/models/file_response_data_uri.rb +16 -12
- data/lib/dropbox-sign/models/list_info_response.rb +11 -12
- data/lib/dropbox-sign/models/o_auth_token_generate_request.rb +11 -12
- data/lib/dropbox-sign/models/o_auth_token_refresh_request.rb +11 -12
- data/lib/dropbox-sign/models/o_auth_token_response.rb +11 -12
- data/lib/dropbox-sign/models/report_create_request.rb +11 -12
- data/lib/dropbox-sign/models/report_create_response.rb +16 -12
- data/lib/dropbox-sign/models/report_response.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_bulk_create_embedded_with_template_request.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_bulk_send_with_template_request.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_create_embedded_request.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_create_embedded_with_template_request.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_get_response.rb +16 -12
- data/lib/dropbox-sign/models/signature_request_list_response.rb +21 -12
- data/lib/dropbox-sign/models/signature_request_remind_request.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_response.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_response_attachment.rb +12 -13
- data/lib/dropbox-sign/models/signature_request_response_custom_field_base.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_response_custom_field_checkbox.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_response_custom_field_text.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_response_custom_field_type_enum.rb +1 -2
- data/lib/dropbox-sign/models/signature_request_response_data_base.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_response_data_type_enum.rb +1 -2
- data/lib/dropbox-sign/models/signature_request_response_data_value_checkbox.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_response_data_value_checkbox_merge.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_response_data_value_date_signed.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_response_data_value_dropdown.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_response_data_value_initials.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_response_data_value_radio.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_response_data_value_signature.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_response_data_value_text.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_response_data_value_text_merge.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_response_signatures.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_send_request.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_send_with_template_request.rb +11 -12
- data/lib/dropbox-sign/models/signature_request_update_request.rb +11 -12
- data/lib/dropbox-sign/models/sub_attachment.rb +11 -12
- data/lib/dropbox-sign/models/sub_bulk_signer_list.rb +11 -12
- data/lib/dropbox-sign/models/sub_bulk_signer_list_custom_field.rb +11 -12
- data/lib/dropbox-sign/models/sub_cc.rb +11 -12
- data/lib/dropbox-sign/models/sub_custom_field.rb +11 -12
- data/lib/dropbox-sign/models/sub_editor_options.rb +11 -12
- data/lib/dropbox-sign/models/sub_field_options.rb +11 -12
- data/lib/dropbox-sign/models/sub_form_field_group.rb +11 -12
- data/lib/dropbox-sign/models/sub_form_field_rule.rb +11 -14
- data/lib/dropbox-sign/models/sub_form_field_rule_action.rb +11 -12
- data/lib/dropbox-sign/models/sub_form_field_rule_trigger.rb +11 -12
- data/lib/dropbox-sign/models/sub_form_fields_per_document_base.rb +11 -12
- data/lib/dropbox-sign/models/sub_form_fields_per_document_checkbox.rb +11 -12
- data/lib/dropbox-sign/models/sub_form_fields_per_document_checkbox_merge.rb +11 -12
- data/lib/dropbox-sign/models/sub_form_fields_per_document_date_signed.rb +11 -12
- data/lib/dropbox-sign/models/sub_form_fields_per_document_dropdown.rb +11 -13
- data/lib/dropbox-sign/models/sub_form_fields_per_document_font_enum.rb +1 -2
- data/lib/dropbox-sign/models/sub_form_fields_per_document_hyperlink.rb +11 -12
- data/lib/dropbox-sign/models/sub_form_fields_per_document_initials.rb +11 -12
- data/lib/dropbox-sign/models/sub_form_fields_per_document_radio.rb +11 -12
- data/lib/dropbox-sign/models/sub_form_fields_per_document_signature.rb +11 -12
- data/lib/dropbox-sign/models/sub_form_fields_per_document_text.rb +11 -12
- data/lib/dropbox-sign/models/sub_form_fields_per_document_text_merge.rb +11 -12
- data/lib/dropbox-sign/models/sub_form_fields_per_document_type_enum.rb +1 -2
- data/lib/dropbox-sign/models/sub_merge_field.rb +11 -12
- data/lib/dropbox-sign/models/sub_o_auth.rb +11 -12
- data/lib/dropbox-sign/models/sub_options.rb +11 -12
- data/lib/dropbox-sign/models/sub_signature_request_grouped_signers.rb +11 -12
- data/lib/dropbox-sign/models/sub_signature_request_signer.rb +11 -12
- data/lib/dropbox-sign/models/sub_signature_request_template_signer.rb +11 -12
- data/lib/dropbox-sign/models/sub_signing_options.rb +11 -12
- data/lib/dropbox-sign/models/sub_team_response.rb +11 -12
- data/lib/dropbox-sign/models/sub_template_role.rb +11 -12
- data/lib/dropbox-sign/models/sub_unclaimed_draft_signer.rb +11 -12
- data/lib/dropbox-sign/models/sub_unclaimed_draft_template_signer.rb +11 -12
- data/lib/dropbox-sign/models/sub_white_labeling_options.rb +11 -12
- data/lib/dropbox-sign/models/team_add_member_request.rb +11 -12
- data/lib/dropbox-sign/models/team_create_request.rb +11 -12
- data/lib/dropbox-sign/models/team_get_info_response.rb +16 -12
- data/lib/dropbox-sign/models/team_get_response.rb +16 -12
- data/lib/dropbox-sign/models/team_info_response.rb +11 -12
- data/lib/dropbox-sign/models/team_invite_response.rb +11 -12
- data/lib/dropbox-sign/models/team_invites_response.rb +16 -12
- data/lib/dropbox-sign/models/team_member_response.rb +11 -12
- data/lib/dropbox-sign/models/team_members_response.rb +21 -12
- data/lib/dropbox-sign/models/team_parent_response.rb +11 -12
- data/lib/dropbox-sign/models/team_remove_member_request.rb +11 -12
- data/lib/dropbox-sign/models/team_response.rb +11 -12
- data/lib/dropbox-sign/models/team_sub_teams_response.rb +21 -12
- data/lib/dropbox-sign/models/team_update_request.rb +11 -12
- data/lib/dropbox-sign/models/template_add_user_request.rb +11 -12
- data/lib/dropbox-sign/models/template_create_embedded_draft_request.rb +11 -12
- data/lib/dropbox-sign/models/template_create_embedded_draft_response.rb +16 -12
- data/lib/dropbox-sign/models/template_create_embedded_draft_response_template.rb +11 -12
- data/lib/dropbox-sign/models/template_create_request.rb +11 -12
- data/lib/dropbox-sign/models/template_create_response.rb +16 -12
- data/lib/dropbox-sign/models/template_create_response_template.rb +11 -12
- data/lib/dropbox-sign/models/template_edit_response.rb +16 -12
- data/lib/dropbox-sign/models/template_get_response.rb +16 -12
- data/lib/dropbox-sign/models/template_list_response.rb +21 -12
- data/lib/dropbox-sign/models/template_remove_user_request.rb +11 -12
- data/lib/dropbox-sign/models/template_response.rb +11 -12
- data/lib/dropbox-sign/models/template_response_account.rb +11 -12
- data/lib/dropbox-sign/models/template_response_account_quota.rb +11 -12
- data/lib/dropbox-sign/models/template_response_cc_role.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_custom_field_base.rb +12 -13
- data/lib/dropbox-sign/models/template_response_document_custom_field_checkbox.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_custom_field_text.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_field_group.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_field_group_rule.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_form_field_base.rb +12 -13
- data/lib/dropbox-sign/models/template_response_document_form_field_checkbox.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_form_field_date_signed.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_form_field_dropdown.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_form_field_hyperlink.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_form_field_initials.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_form_field_radio.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_form_field_signature.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_form_field_text.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_static_field_base.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_static_field_checkbox.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_static_field_date_signed.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_static_field_dropdown.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_static_field_hyperlink.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_static_field_initials.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_static_field_radio.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_static_field_signature.rb +11 -12
- data/lib/dropbox-sign/models/template_response_document_static_field_text.rb +11 -12
- data/lib/dropbox-sign/models/template_response_field_avg_text_length.rb +11 -12
- data/lib/dropbox-sign/models/template_response_signer_role.rb +11 -12
- data/lib/dropbox-sign/models/template_update_files_request.rb +11 -12
- data/lib/dropbox-sign/models/template_update_files_response.rb +16 -12
- data/lib/dropbox-sign/models/template_update_files_response_template.rb +11 -12
- data/lib/dropbox-sign/models/unclaimed_draft_create_embedded_request.rb +11 -12
- data/lib/dropbox-sign/models/unclaimed_draft_create_embedded_with_template_request.rb +11 -12
- data/lib/dropbox-sign/models/unclaimed_draft_create_request.rb +11 -12
- data/lib/dropbox-sign/models/unclaimed_draft_create_response.rb +16 -12
- data/lib/dropbox-sign/models/unclaimed_draft_edit_and_resend_request.rb +11 -12
- data/lib/dropbox-sign/models/unclaimed_draft_response.rb +11 -12
- data/lib/dropbox-sign/models/warning_response.rb +11 -12
- data/lib/dropbox-sign/version.rb +2 -2
- data/lib/dropbox-sign.rb +13 -1
- data/openapi-config.yaml +2 -1
- data/openapi-sdk.yaml +1080 -0
- data/run-build +2 -2
- data/spec/spec_helper.rb +1 -1
- data/templates/Gemfile.mustache +2 -0
- data/templates/README.mustache +90 -2
- data/templates/api.mustache +28 -2
- data/templates/api_client.mustache +7 -1
- data/templates/api_client_faraday_partial.mustache +29 -23
- data/templates/api_client_typhoeus_partial.mustache +1 -1
- data/templates/api_doc.mustache +87 -0
- data/templates/api_error.mustache +10 -0
- data/templates/base_object.mustache +74 -1
- data/templates/configuration.mustache +57 -0
- data/templates/gem.mustache +2 -0
- data/templates/gitignore.mustache +3 -1
- data/templates/gitlab-ci.mustache +26 -0
- data/templates/model.mustache +16 -0
- data/templates/model_test.mustache +5 -1
- data/templates/partial_anyof_module.mustache +96 -0
- data/templates/partial_model_enum_class.mustache +1 -1
- data/templates/partial_model_generic.mustache +70 -21
- data/templates/partial_model_generic_doc.mustache +28 -0
- data/templates/version.mustache +2 -0
- metadata +42 -13
- data/templates/api_client_spec.mustache +0 -220
- data/templates/configuration_spec.mustache +0 -32
- data/templates/configuration_tls_faraday_partial.mustache +0 -29
- data/templates/configuration_tls_typhoeus_partial.mustache +0 -34
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: 3.0.0
|
7
7
|
Contact: apisupport@hellosign.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
Generator version: 7.
|
9
|
+
Generator version: 7.8.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -44,11 +44,6 @@ module Dropbox::Sign
|
|
44
44
|
attribute_map.values
|
45
45
|
end
|
46
46
|
|
47
|
-
# Returns attribute map of this model + parent
|
48
|
-
def self.merged_attributes
|
49
|
-
self.attribute_map
|
50
|
-
end
|
51
|
-
|
52
47
|
# Attribute type mapping.
|
53
48
|
def self.openapi_types
|
54
49
|
{
|
@@ -58,17 +53,22 @@ module Dropbox::Sign
|
|
58
53
|
}
|
59
54
|
end
|
60
55
|
|
61
|
-
# Attribute type mapping of this model + parent
|
62
|
-
def self.merged_types
|
63
|
-
self.openapi_types
|
64
|
-
end
|
65
|
-
|
66
56
|
# List of attributes with nullable: true
|
67
57
|
def self.openapi_nullable
|
68
58
|
Set.new([
|
69
59
|
])
|
70
60
|
end
|
71
61
|
|
62
|
+
# Returns attribute map of this model + parent
|
63
|
+
def self.merged_attributes
|
64
|
+
self.attribute_map
|
65
|
+
end
|
66
|
+
|
67
|
+
# Attribute type mapping of this model + parent
|
68
|
+
def self.merged_types
|
69
|
+
self.openapi_types
|
70
|
+
end
|
71
|
+
|
72
72
|
# Returns list of attributes with nullable: true of this model + parent
|
73
73
|
def self.merged_nullable
|
74
74
|
self.openapi_nullable
|
@@ -215,7 +215,6 @@ module Dropbox::Sign
|
|
215
215
|
end
|
216
216
|
end
|
217
217
|
else # model
|
218
|
-
# models (e.g. Pet)
|
219
218
|
klass = Dropbox::Sign.const_get(type)
|
220
219
|
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
221
220
|
end
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: 3.0.0
|
7
7
|
Contact: apisupport@hellosign.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
Generator version: 7.
|
9
|
+
Generator version: 7.8.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -152,11 +152,6 @@ module Dropbox::Sign
|
|
152
152
|
attribute_map.values
|
153
153
|
end
|
154
154
|
|
155
|
-
# Returns attribute map of this model + parent
|
156
|
-
def self.merged_attributes
|
157
|
-
self.attribute_map
|
158
|
-
end
|
159
|
-
|
160
155
|
# Attribute type mapping.
|
161
156
|
def self.openapi_types
|
162
157
|
{
|
@@ -188,17 +183,22 @@ module Dropbox::Sign
|
|
188
183
|
}
|
189
184
|
end
|
190
185
|
|
191
|
-
# Attribute type mapping of this model + parent
|
192
|
-
def self.merged_types
|
193
|
-
self.openapi_types
|
194
|
-
end
|
195
|
-
|
196
186
|
# List of attributes with nullable: true
|
197
187
|
def self.openapi_nullable
|
198
188
|
Set.new([
|
199
189
|
])
|
200
190
|
end
|
201
191
|
|
192
|
+
# Returns attribute map of this model + parent
|
193
|
+
def self.merged_attributes
|
194
|
+
self.attribute_map
|
195
|
+
end
|
196
|
+
|
197
|
+
# Attribute type mapping of this model + parent
|
198
|
+
def self.merged_types
|
199
|
+
self.openapi_types
|
200
|
+
end
|
201
|
+
|
202
202
|
# Returns list of attributes with nullable: true of this model + parent
|
203
203
|
def self.merged_nullable
|
204
204
|
self.openapi_nullable
|
@@ -532,7 +532,6 @@ module Dropbox::Sign
|
|
532
532
|
end
|
533
533
|
end
|
534
534
|
else # model
|
535
|
-
# models (e.g. Pet)
|
536
535
|
klass = Dropbox::Sign.const_get(type)
|
537
536
|
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
538
537
|
end
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: 3.0.0
|
7
7
|
Contact: apisupport@hellosign.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
Generator version: 7.
|
9
|
+
Generator version: 7.8.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -38,11 +38,6 @@ module Dropbox::Sign
|
|
38
38
|
attribute_map.values
|
39
39
|
end
|
40
40
|
|
41
|
-
# Returns attribute map of this model + parent
|
42
|
-
def self.merged_attributes
|
43
|
-
self.attribute_map
|
44
|
-
end
|
45
|
-
|
46
41
|
# Attribute type mapping.
|
47
42
|
def self.openapi_types
|
48
43
|
{
|
@@ -51,17 +46,22 @@ module Dropbox::Sign
|
|
51
46
|
}
|
52
47
|
end
|
53
48
|
|
54
|
-
# Attribute type mapping of this model + parent
|
55
|
-
def self.merged_types
|
56
|
-
self.openapi_types
|
57
|
-
end
|
58
|
-
|
59
49
|
# List of attributes with nullable: true
|
60
50
|
def self.openapi_nullable
|
61
51
|
Set.new([
|
62
52
|
])
|
63
53
|
end
|
64
54
|
|
55
|
+
# Returns attribute map of this model + parent
|
56
|
+
def self.merged_attributes
|
57
|
+
self.attribute_map
|
58
|
+
end
|
59
|
+
|
60
|
+
# Attribute type mapping of this model + parent
|
61
|
+
def self.merged_types
|
62
|
+
self.openapi_types
|
63
|
+
end
|
64
|
+
|
65
65
|
# Returns list of attributes with nullable: true of this model + parent
|
66
66
|
def self.merged_nullable
|
67
67
|
self.openapi_nullable
|
@@ -107,12 +107,17 @@ module Dropbox::Sign
|
|
107
107
|
# @return Array for valid properties with the reasons
|
108
108
|
def list_invalid_properties
|
109
109
|
invalid_properties = Array.new
|
110
|
+
if @template.nil?
|
111
|
+
invalid_properties.push('invalid value for "template", template cannot be nil.')
|
112
|
+
end
|
113
|
+
|
110
114
|
invalid_properties
|
111
115
|
end
|
112
116
|
|
113
117
|
# Check to see if the all the properties in the model are valid
|
114
118
|
# @return true if the model is valid
|
115
119
|
def valid?
|
120
|
+
return false if @template.nil?
|
116
121
|
true
|
117
122
|
end
|
118
123
|
|
@@ -203,7 +208,6 @@ module Dropbox::Sign
|
|
203
208
|
end
|
204
209
|
end
|
205
210
|
else # model
|
206
|
-
# models (e.g. Pet)
|
207
211
|
klass = Dropbox::Sign.const_get(type)
|
208
212
|
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
209
213
|
end
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: 3.0.0
|
7
7
|
Contact: apisupport@hellosign.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
Generator version: 7.
|
9
|
+
Generator version: 7.8.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -50,11 +50,6 @@ module Dropbox::Sign
|
|
50
50
|
attribute_map.values
|
51
51
|
end
|
52
52
|
|
53
|
-
# Returns attribute map of this model + parent
|
54
|
-
def self.merged_attributes
|
55
|
-
self.attribute_map
|
56
|
-
end
|
57
|
-
|
58
53
|
# Attribute type mapping.
|
59
54
|
def self.openapi_types
|
60
55
|
{
|
@@ -65,17 +60,22 @@ module Dropbox::Sign
|
|
65
60
|
}
|
66
61
|
end
|
67
62
|
|
68
|
-
# Attribute type mapping of this model + parent
|
69
|
-
def self.merged_types
|
70
|
-
self.openapi_types
|
71
|
-
end
|
72
|
-
|
73
63
|
# List of attributes with nullable: true
|
74
64
|
def self.openapi_nullable
|
75
65
|
Set.new([
|
76
66
|
])
|
77
67
|
end
|
78
68
|
|
69
|
+
# Returns attribute map of this model + parent
|
70
|
+
def self.merged_attributes
|
71
|
+
self.attribute_map
|
72
|
+
end
|
73
|
+
|
74
|
+
# Attribute type mapping of this model + parent
|
75
|
+
def self.merged_types
|
76
|
+
self.openapi_types
|
77
|
+
end
|
78
|
+
|
79
79
|
# Returns list of attributes with nullable: true of this model + parent
|
80
80
|
def self.merged_nullable
|
81
81
|
self.openapi_nullable
|
@@ -227,7 +227,6 @@ module Dropbox::Sign
|
|
227
227
|
end
|
228
228
|
end
|
229
229
|
else # model
|
230
|
-
# models (e.g. Pet)
|
231
230
|
klass = Dropbox::Sign.const_get(type)
|
232
231
|
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
233
232
|
end
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: 3.0.0
|
7
7
|
Contact: apisupport@hellosign.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
Generator version: 7.
|
9
|
+
Generator version: 7.8.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -118,11 +118,6 @@ module Dropbox::Sign
|
|
118
118
|
attribute_map.values
|
119
119
|
end
|
120
120
|
|
121
|
-
# Returns attribute map of this model + parent
|
122
|
-
def self.merged_attributes
|
123
|
-
self.attribute_map
|
124
|
-
end
|
125
|
-
|
126
121
|
# Attribute type mapping.
|
127
122
|
def self.openapi_types
|
128
123
|
{
|
@@ -147,17 +142,22 @@ module Dropbox::Sign
|
|
147
142
|
}
|
148
143
|
end
|
149
144
|
|
150
|
-
# Attribute type mapping of this model + parent
|
151
|
-
def self.merged_types
|
152
|
-
self.openapi_types
|
153
|
-
end
|
154
|
-
|
155
145
|
# List of attributes with nullable: true
|
156
146
|
def self.openapi_nullable
|
157
147
|
Set.new([
|
158
148
|
])
|
159
149
|
end
|
160
150
|
|
151
|
+
# Returns attribute map of this model + parent
|
152
|
+
def self.merged_attributes
|
153
|
+
self.attribute_map
|
154
|
+
end
|
155
|
+
|
156
|
+
# Attribute type mapping of this model + parent
|
157
|
+
def self.merged_types
|
158
|
+
self.openapi_types
|
159
|
+
end
|
160
|
+
|
161
161
|
# Returns list of attributes with nullable: true of this model + parent
|
162
162
|
def self.merged_nullable
|
163
163
|
self.openapi_nullable
|
@@ -449,7 +449,6 @@ module Dropbox::Sign
|
|
449
449
|
end
|
450
450
|
end
|
451
451
|
else # model
|
452
|
-
# models (e.g. Pet)
|
453
452
|
klass = Dropbox::Sign.const_get(type)
|
454
453
|
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
455
454
|
end
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: 3.0.0
|
7
7
|
Contact: apisupport@hellosign.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
Generator version: 7.
|
9
|
+
Generator version: 7.8.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -38,11 +38,6 @@ module Dropbox::Sign
|
|
38
38
|
attribute_map.values
|
39
39
|
end
|
40
40
|
|
41
|
-
# Returns attribute map of this model + parent
|
42
|
-
def self.merged_attributes
|
43
|
-
self.attribute_map
|
44
|
-
end
|
45
|
-
|
46
41
|
# Attribute type mapping.
|
47
42
|
def self.openapi_types
|
48
43
|
{
|
@@ -51,17 +46,22 @@ module Dropbox::Sign
|
|
51
46
|
}
|
52
47
|
end
|
53
48
|
|
54
|
-
# Attribute type mapping of this model + parent
|
55
|
-
def self.merged_types
|
56
|
-
self.openapi_types
|
57
|
-
end
|
58
|
-
|
59
49
|
# List of attributes with nullable: true
|
60
50
|
def self.openapi_nullable
|
61
51
|
Set.new([
|
62
52
|
])
|
63
53
|
end
|
64
54
|
|
55
|
+
# Returns attribute map of this model + parent
|
56
|
+
def self.merged_attributes
|
57
|
+
self.attribute_map
|
58
|
+
end
|
59
|
+
|
60
|
+
# Attribute type mapping of this model + parent
|
61
|
+
def self.merged_types
|
62
|
+
self.openapi_types
|
63
|
+
end
|
64
|
+
|
65
65
|
# Returns list of attributes with nullable: true of this model + parent
|
66
66
|
def self.merged_nullable
|
67
67
|
self.openapi_nullable
|
@@ -107,12 +107,17 @@ module Dropbox::Sign
|
|
107
107
|
# @return Array for valid properties with the reasons
|
108
108
|
def list_invalid_properties
|
109
109
|
invalid_properties = Array.new
|
110
|
+
if @template.nil?
|
111
|
+
invalid_properties.push('invalid value for "template", template cannot be nil.')
|
112
|
+
end
|
113
|
+
|
110
114
|
invalid_properties
|
111
115
|
end
|
112
116
|
|
113
117
|
# Check to see if the all the properties in the model are valid
|
114
118
|
# @return true if the model is valid
|
115
119
|
def valid?
|
120
|
+
return false if @template.nil?
|
116
121
|
true
|
117
122
|
end
|
118
123
|
|
@@ -203,7 +208,6 @@ module Dropbox::Sign
|
|
203
208
|
end
|
204
209
|
end
|
205
210
|
else # model
|
206
|
-
# models (e.g. Pet)
|
207
211
|
klass = Dropbox::Sign.const_get(type)
|
208
212
|
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
209
213
|
end
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: 3.0.0
|
7
7
|
Contact: apisupport@hellosign.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
Generator version: 7.
|
9
|
+
Generator version: 7.8.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -35,11 +35,6 @@ module Dropbox::Sign
|
|
35
35
|
attribute_map.values
|
36
36
|
end
|
37
37
|
|
38
|
-
# Returns attribute map of this model + parent
|
39
|
-
def self.merged_attributes
|
40
|
-
self.attribute_map
|
41
|
-
end
|
42
|
-
|
43
38
|
# Attribute type mapping.
|
44
39
|
def self.openapi_types
|
45
40
|
{
|
@@ -47,17 +42,22 @@ module Dropbox::Sign
|
|
47
42
|
}
|
48
43
|
end
|
49
44
|
|
50
|
-
# Attribute type mapping of this model + parent
|
51
|
-
def self.merged_types
|
52
|
-
self.openapi_types
|
53
|
-
end
|
54
|
-
|
55
45
|
# List of attributes with nullable: true
|
56
46
|
def self.openapi_nullable
|
57
47
|
Set.new([
|
58
48
|
])
|
59
49
|
end
|
60
50
|
|
51
|
+
# Returns attribute map of this model + parent
|
52
|
+
def self.merged_attributes
|
53
|
+
self.attribute_map
|
54
|
+
end
|
55
|
+
|
56
|
+
# Attribute type mapping of this model + parent
|
57
|
+
def self.merged_types
|
58
|
+
self.openapi_types
|
59
|
+
end
|
60
|
+
|
61
61
|
# Returns list of attributes with nullable: true of this model + parent
|
62
62
|
def self.merged_nullable
|
63
63
|
self.openapi_nullable
|
@@ -192,7 +192,6 @@ module Dropbox::Sign
|
|
192
192
|
end
|
193
193
|
end
|
194
194
|
else # model
|
195
|
-
# models (e.g. Pet)
|
196
195
|
klass = Dropbox::Sign.const_get(type)
|
197
196
|
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
198
197
|
end
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: 3.0.0
|
7
7
|
Contact: apisupport@hellosign.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
Generator version: 7.
|
9
|
+
Generator version: 7.8.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -34,11 +34,6 @@ module Dropbox::Sign
|
|
34
34
|
attribute_map.values
|
35
35
|
end
|
36
36
|
|
37
|
-
# Returns attribute map of this model + parent
|
38
|
-
def self.merged_attributes
|
39
|
-
self.attribute_map
|
40
|
-
end
|
41
|
-
|
42
37
|
# Attribute type mapping.
|
43
38
|
def self.openapi_types
|
44
39
|
{
|
@@ -46,17 +41,22 @@ module Dropbox::Sign
|
|
46
41
|
}
|
47
42
|
end
|
48
43
|
|
49
|
-
# Attribute type mapping of this model + parent
|
50
|
-
def self.merged_types
|
51
|
-
self.openapi_types
|
52
|
-
end
|
53
|
-
|
54
44
|
# List of attributes with nullable: true
|
55
45
|
def self.openapi_nullable
|
56
46
|
Set.new([
|
57
47
|
])
|
58
48
|
end
|
59
49
|
|
50
|
+
# Returns attribute map of this model + parent
|
51
|
+
def self.merged_attributes
|
52
|
+
self.attribute_map
|
53
|
+
end
|
54
|
+
|
55
|
+
# Attribute type mapping of this model + parent
|
56
|
+
def self.merged_types
|
57
|
+
self.openapi_types
|
58
|
+
end
|
59
|
+
|
60
60
|
# Returns list of attributes with nullable: true of this model + parent
|
61
61
|
def self.merged_nullable
|
62
62
|
self.openapi_nullable
|
@@ -96,12 +96,17 @@ module Dropbox::Sign
|
|
96
96
|
# @return Array for valid properties with the reasons
|
97
97
|
def list_invalid_properties
|
98
98
|
invalid_properties = Array.new
|
99
|
+
if @template_id.nil?
|
100
|
+
invalid_properties.push('invalid value for "template_id", template_id cannot be nil.')
|
101
|
+
end
|
102
|
+
|
99
103
|
invalid_properties
|
100
104
|
end
|
101
105
|
|
102
106
|
# Check to see if the all the properties in the model are valid
|
103
107
|
# @return true if the model is valid
|
104
108
|
def valid?
|
109
|
+
return false if @template_id.nil?
|
105
110
|
true
|
106
111
|
end
|
107
112
|
|
@@ -191,7 +196,6 @@ module Dropbox::Sign
|
|
191
196
|
end
|
192
197
|
end
|
193
198
|
else # model
|
194
|
-
# models (e.g. Pet)
|
195
199
|
klass = Dropbox::Sign.const_get(type)
|
196
200
|
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
197
201
|
end
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: 3.0.0
|
7
7
|
Contact: apisupport@hellosign.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
Generator version: 7.
|
9
|
+
Generator version: 7.8.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -38,11 +38,6 @@ module Dropbox::Sign
|
|
38
38
|
attribute_map.values
|
39
39
|
end
|
40
40
|
|
41
|
-
# Returns attribute map of this model + parent
|
42
|
-
def self.merged_attributes
|
43
|
-
self.attribute_map
|
44
|
-
end
|
45
|
-
|
46
41
|
# Attribute type mapping.
|
47
42
|
def self.openapi_types
|
48
43
|
{
|
@@ -51,17 +46,22 @@ module Dropbox::Sign
|
|
51
46
|
}
|
52
47
|
end
|
53
48
|
|
54
|
-
# Attribute type mapping of this model + parent
|
55
|
-
def self.merged_types
|
56
|
-
self.openapi_types
|
57
|
-
end
|
58
|
-
|
59
49
|
# List of attributes with nullable: true
|
60
50
|
def self.openapi_nullable
|
61
51
|
Set.new([
|
62
52
|
])
|
63
53
|
end
|
64
54
|
|
55
|
+
# Returns attribute map of this model + parent
|
56
|
+
def self.merged_attributes
|
57
|
+
self.attribute_map
|
58
|
+
end
|
59
|
+
|
60
|
+
# Attribute type mapping of this model + parent
|
61
|
+
def self.merged_types
|
62
|
+
self.openapi_types
|
63
|
+
end
|
64
|
+
|
65
65
|
# Returns list of attributes with nullable: true of this model + parent
|
66
66
|
def self.merged_nullable
|
67
67
|
self.openapi_nullable
|
@@ -107,12 +107,17 @@ module Dropbox::Sign
|
|
107
107
|
# @return Array for valid properties with the reasons
|
108
108
|
def list_invalid_properties
|
109
109
|
invalid_properties = Array.new
|
110
|
+
if @template.nil?
|
111
|
+
invalid_properties.push('invalid value for "template", template cannot be nil.')
|
112
|
+
end
|
113
|
+
|
110
114
|
invalid_properties
|
111
115
|
end
|
112
116
|
|
113
117
|
# Check to see if the all the properties in the model are valid
|
114
118
|
# @return true if the model is valid
|
115
119
|
def valid?
|
120
|
+
return false if @template.nil?
|
116
121
|
true
|
117
122
|
end
|
118
123
|
|
@@ -203,7 +208,6 @@ module Dropbox::Sign
|
|
203
208
|
end
|
204
209
|
end
|
205
210
|
else # model
|
206
|
-
# models (e.g. Pet)
|
207
211
|
klass = Dropbox::Sign.const_get(type)
|
208
212
|
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
209
213
|
end
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: 3.0.0
|
7
7
|
Contact: apisupport@hellosign.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
Generator version: 7.
|
9
|
+
Generator version: 7.8.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -43,11 +43,6 @@ module Dropbox::Sign
|
|
43
43
|
attribute_map.values
|
44
44
|
end
|
45
45
|
|
46
|
-
# Returns attribute map of this model + parent
|
47
|
-
def self.merged_attributes
|
48
|
-
self.attribute_map
|
49
|
-
end
|
50
|
-
|
51
46
|
# Attribute type mapping.
|
52
47
|
def self.openapi_types
|
53
48
|
{
|
@@ -57,17 +52,22 @@ module Dropbox::Sign
|
|
57
52
|
}
|
58
53
|
end
|
59
54
|
|
60
|
-
# Attribute type mapping of this model + parent
|
61
|
-
def self.merged_types
|
62
|
-
self.openapi_types
|
63
|
-
end
|
64
|
-
|
65
55
|
# List of attributes with nullable: true
|
66
56
|
def self.openapi_nullable
|
67
57
|
Set.new([
|
68
58
|
])
|
69
59
|
end
|
70
60
|
|
61
|
+
# Returns attribute map of this model + parent
|
62
|
+
def self.merged_attributes
|
63
|
+
self.attribute_map
|
64
|
+
end
|
65
|
+
|
66
|
+
# Attribute type mapping of this model + parent
|
67
|
+
def self.merged_types
|
68
|
+
self.openapi_types
|
69
|
+
end
|
70
|
+
|
71
71
|
# Returns list of attributes with nullable: true of this model + parent
|
72
72
|
def self.merged_nullable
|
73
73
|
self.openapi_nullable
|
@@ -119,12 +119,22 @@ module Dropbox::Sign
|
|
119
119
|
# @return Array for valid properties with the reasons
|
120
120
|
def list_invalid_properties
|
121
121
|
invalid_properties = Array.new
|
122
|
+
if @templates.nil?
|
123
|
+
invalid_properties.push('invalid value for "templates", templates cannot be nil.')
|
124
|
+
end
|
125
|
+
|
126
|
+
if @list_info.nil?
|
127
|
+
invalid_properties.push('invalid value for "list_info", list_info cannot be nil.')
|
128
|
+
end
|
129
|
+
|
122
130
|
invalid_properties
|
123
131
|
end
|
124
132
|
|
125
133
|
# Check to see if the all the properties in the model are valid
|
126
134
|
# @return true if the model is valid
|
127
135
|
def valid?
|
136
|
+
return false if @templates.nil?
|
137
|
+
return false if @list_info.nil?
|
128
138
|
true
|
129
139
|
end
|
130
140
|
|
@@ -216,7 +226,6 @@ module Dropbox::Sign
|
|
216
226
|
end
|
217
227
|
end
|
218
228
|
else # model
|
219
|
-
# models (e.g. Pet)
|
220
229
|
klass = Dropbox::Sign.const_get(type)
|
221
230
|
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
222
231
|
end
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: 3.0.0
|
7
7
|
Contact: apisupport@hellosign.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
Generator version: 7.
|
9
|
+
Generator version: 7.8.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,11 +39,6 @@ module Dropbox::Sign
|
|
39
39
|
attribute_map.values
|
40
40
|
end
|
41
41
|
|
42
|
-
# Returns attribute map of this model + parent
|
43
|
-
def self.merged_attributes
|
44
|
-
self.attribute_map
|
45
|
-
end
|
46
|
-
|
47
42
|
# Attribute type mapping.
|
48
43
|
def self.openapi_types
|
49
44
|
{
|
@@ -52,17 +47,22 @@ module Dropbox::Sign
|
|
52
47
|
}
|
53
48
|
end
|
54
49
|
|
55
|
-
# Attribute type mapping of this model + parent
|
56
|
-
def self.merged_types
|
57
|
-
self.openapi_types
|
58
|
-
end
|
59
|
-
|
60
50
|
# List of attributes with nullable: true
|
61
51
|
def self.openapi_nullable
|
62
52
|
Set.new([
|
63
53
|
])
|
64
54
|
end
|
65
55
|
|
56
|
+
# Returns attribute map of this model + parent
|
57
|
+
def self.merged_attributes
|
58
|
+
self.attribute_map
|
59
|
+
end
|
60
|
+
|
61
|
+
# Attribute type mapping of this model + parent
|
62
|
+
def self.merged_types
|
63
|
+
self.openapi_types
|
64
|
+
end
|
65
|
+
|
66
66
|
# Returns list of attributes with nullable: true of this model + parent
|
67
67
|
def self.merged_nullable
|
68
68
|
self.openapi_nullable
|
@@ -202,7 +202,6 @@ module Dropbox::Sign
|
|
202
202
|
end
|
203
203
|
end
|
204
204
|
else # model
|
205
|
-
# models (e.g. Pet)
|
206
205
|
klass = Dropbox::Sign.const_get(type)
|
207
206
|
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
208
207
|
end
|