docspring 1.0.0 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.openapi-generator/VERSION +1 -1
- data/CHANGELOG.md +14 -37
- data/Gemfile +2 -1
- data/Gemfile.lock +37 -32
- data/LICENSE +1 -1
- data/README.md +26 -15
- data/docs/AddFieldsData.md +8 -0
- data/docs/AddFieldsTemplateResponse.md +10 -0
- data/docs/CombinePdfsData.md +4 -4
- data/docs/CombinedSubmission.md +1 -0
- data/docs/CombinedSubmissionData.md +3 -3
- data/docs/{CreateTemplateData.md → CreateHtmlTemplateData.md} +2 -2
- data/docs/CreateSubmissionDataRequestData.md +2 -2
- data/docs/CreateTemplateFromUploadData.md +8 -0
- data/docs/HtmlTemplateData.md +24 -0
- data/docs/PDFApi.md +169 -15
- data/docs/PendingTemplate.md +2 -0
- data/docs/Submission.md +5 -0
- data/docs/SubmissionBatchData.md +2 -2
- data/docs/SubmissionData.md +4 -3
- data/docs/SubmissionDataBatchRequest.md +2 -2
- data/docs/SubmissionDataRequest.md +2 -0
- data/docs/Template.md +2 -0
- data/docs/{Templatesv2Template.md → TemplateData.md} +11 -7
- data/docs/TemplatestemplateIdaddFieldsFields.md +92 -0
- data/docs/UpdateSubmissionDataRequestData.md +9 -9
- data/docs/UpdateTemplateData.md +8 -0
- data/docs/UpdateTemplateResponse.md +9 -0
- data/docs/UploadTemplateData.md +25 -0
- data/docs/{Templatesv2TemplateDocument.md → UploadTemplateDataDocument.md} +2 -2
- data/docs/{Templatesv2TemplateDocumentMetadata.md → UploadTemplateDataDocumentMetadata.md} +1 -1
- data/docspring.gemspec +3 -3
- data/lib/docspring.rb +13 -5
- data/lib/docspring/api/pdf_api.rb +193 -22
- data/lib/docspring/api_client.rb +1 -1
- data/lib/docspring/api_error.rb +1 -1
- data/lib/docspring/configuration.rb +1 -1
- data/lib/docspring/models/add_fields_data.rb +190 -0
- data/lib/docspring/models/add_fields_template_response.rb +239 -0
- data/lib/docspring/models/authentication_error.rb +1 -1
- data/lib/docspring/models/authentication_success_response.rb +1 -1
- data/lib/docspring/models/combine_pdfs_data.rb +28 -28
- data/lib/docspring/models/combined_submission.rb +11 -2
- data/lib/docspring/models/combined_submission_action.rb +1 -6
- data/lib/docspring/models/combined_submission_data.rb +23 -23
- data/lib/docspring/models/create_combined_submission_response.rb +1 -1
- data/lib/docspring/models/create_custom_file_data.rb +1 -1
- data/lib/docspring/models/create_custom_file_response.rb +1 -1
- data/lib/docspring/models/create_folder_data.rb +1 -1
- data/lib/docspring/models/{create_template_data.rb → create_html_template_data.rb} +3 -3
- data/lib/docspring/models/create_submission_batch_response.rb +1 -1
- data/lib/docspring/models/create_submission_batch_submissions_response.rb +1 -1
- data/lib/docspring/models/create_submission_data_request_data.rb +20 -20
- data/lib/docspring/models/create_submission_data_request_token_response.rb +1 -1
- data/lib/docspring/models/create_submission_data_request_token_response_token.rb +1 -1
- data/lib/docspring/models/create_submission_response.rb +1 -1
- data/lib/docspring/models/create_template_from_upload_data.rb +188 -0
- data/lib/docspring/models/custom_file.rb +1 -1
- data/lib/docspring/models/error.rb +1 -1
- data/lib/docspring/models/folder.rb +1 -1
- data/lib/docspring/models/folders_folder.rb +1 -1
- data/lib/docspring/models/html_template_data.rb +373 -0
- data/lib/docspring/models/invalid_request.rb +1 -1
- data/lib/docspring/models/move_folder_data.rb +1 -1
- data/lib/docspring/models/move_template_data.rb +1 -1
- data/lib/docspring/models/pending_template.rb +20 -2
- data/lib/docspring/models/rename_folder_data.rb +1 -1
- data/lib/docspring/models/submission.rb +52 -7
- data/lib/docspring/models/submission_action.rb +1 -6
- data/lib/docspring/models/submission_batch.rb +1 -1
- data/lib/docspring/models/submission_batch_data.rb +16 -16
- data/lib/docspring/models/submission_data.rb +34 -25
- data/lib/docspring/models/submission_data_batch_request.rb +20 -20
- data/lib/docspring/models/submission_data_request.rb +23 -20
- data/lib/docspring/models/template.rb +20 -2
- data/lib/docspring/models/{templatesv2_template.rb → template_data.rb} +81 -45
- data/lib/docspring/models/templatestemplate_idadd_fields_fields.rb +1306 -0
- data/lib/docspring/models/update_data_request_response.rb +1 -1
- data/lib/docspring/models/update_submission_data_request_data.rb +79 -79
- data/lib/docspring/models/update_template_data.rb +188 -0
- data/lib/docspring/models/update_template_response.rb +228 -0
- data/lib/docspring/models/upload_template_data.rb +382 -0
- data/lib/docspring/models/{templatesv2_template_document.rb → upload_template_data_document.rb} +3 -3
- data/lib/docspring/models/{templatesv2_template_document_metadata.rb → upload_template_data_document_metadata.rb} +2 -2
- data/lib/docspring/version.rb +2 -2
- data/spec/api/client_integration_spec.rb +14 -2
- data/spec/api/pdf_api_integration_spec.rb +49 -18
- data/spec/api/pdf_api_spec_original.skipped.rb +51 -11
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/add_fields_data_spec.rb +41 -0
- data/spec/models/add_fields_template_response_spec.rb +57 -0
- data/spec/models/authentication_error_spec.rb +1 -1
- data/spec/models/authentication_success_response_spec.rb +1 -1
- data/spec/models/combine_pdfs_data_spec.rb +5 -5
- data/spec/models/combined_submission_action_spec.rb +1 -1
- data/spec/models/combined_submission_data_spec.rb +5 -5
- data/spec/models/combined_submission_spec.rb +7 -1
- data/spec/models/create_combined_submission_response_spec.rb +1 -1
- data/spec/models/create_custom_file_data_spec.rb +1 -1
- data/spec/models/create_custom_file_response_spec.rb +1 -1
- data/spec/models/create_folder_data_spec.rb +1 -1
- data/spec/models/create_html_template_data_spec.rb +41 -0
- data/spec/models/create_submission_batch_response_spec.rb +1 -1
- data/spec/models/create_submission_batch_submissions_response_spec.rb +1 -1
- data/spec/models/create_submission_data_request_data_spec.rb +9 -9
- data/spec/models/create_submission_data_request_token_response_spec.rb +1 -1
- data/spec/models/create_submission_data_request_token_response_token_spec.rb +1 -1
- data/spec/models/create_submission_response_spec.rb +1 -1
- data/spec/models/{create_template_data_spec.rb → create_template_from_upload_data_spec.rb} +7 -7
- data/spec/models/custom_file_spec.rb +1 -1
- data/spec/models/error_spec.rb +1 -1
- data/spec/models/folder_spec.rb +1 -1
- data/spec/models/folders_folder_spec.rb +1 -1
- data/spec/models/html_template_data_spec.rb +145 -0
- data/spec/models/invalid_request_spec.rb +1 -1
- data/spec/models/move_folder_data_spec.rb +1 -1
- data/spec/models/move_template_data_spec.rb +1 -1
- data/spec/models/pending_template_spec.rb +13 -1
- data/spec/models/rename_folder_data_spec.rb +1 -1
- data/spec/models/submission_action_spec.rb +1 -1
- data/spec/models/submission_batch_data_spec.rb +3 -3
- data/spec/models/submission_batch_spec.rb +1 -1
- data/spec/models/submission_data_batch_request_spec.rb +5 -5
- data/spec/models/submission_data_request_spec.rb +13 -1
- data/spec/models/submission_data_spec.rb +11 -5
- data/spec/models/submission_spec.rb +32 -2
- data/spec/models/{templatesv2_template_spec.rb → template_data_spec.rb} +40 -16
- data/spec/models/template_spec.rb +13 -1
- data/spec/models/templatestemplate_idadd_fields_fields_spec.rb +589 -0
- data/spec/models/update_data_request_response_spec.rb +1 -1
- data/spec/models/update_submission_data_request_data_spec.rb +17 -17
- data/spec/models/update_template_data_spec.rb +41 -0
- data/spec/models/update_template_response_spec.rb +51 -0
- data/spec/models/{templatesv2_template_document_metadata_spec.rb → upload_template_data_document_metadata_spec.rb} +7 -7
- data/spec/models/{templatesv2_template_document_spec.rb → upload_template_data_document_spec.rb} +7 -7
- data/spec/models/upload_template_data_spec.rb +151 -0
- data/spec/spec_helper.rb +1 -1
- metadata +60 -32
- data/.swagger-codegen-ignore +0 -31
- data/.swagger-codegen/VERSION +0 -1
- data/.swagger-revision +0 -1
- data/.travis.yml +0 -8
@@ -0,0 +1,188 @@
|
|
1
|
+
=begin
|
2
|
+
#API v1
|
3
|
+
|
4
|
+
#DocSpring is a service that helps you fill out and sign PDF templates.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 3.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
|
15
|
+
module DocSpring
|
16
|
+
class CreateTemplateFromUploadData
|
17
|
+
attr_accessor :template
|
18
|
+
|
19
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
20
|
+
def self.attribute_map
|
21
|
+
{
|
22
|
+
:'template' => :'template'
|
23
|
+
}
|
24
|
+
end
|
25
|
+
|
26
|
+
# Attribute type mapping.
|
27
|
+
def self.openapi_types
|
28
|
+
{
|
29
|
+
:'template' => :'UploadTemplateData'
|
30
|
+
}
|
31
|
+
end
|
32
|
+
|
33
|
+
# Initializes the object
|
34
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
35
|
+
def initialize(attributes = {})
|
36
|
+
return unless attributes.is_a?(Hash)
|
37
|
+
|
38
|
+
# convert string to symbol for hash key
|
39
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
40
|
+
|
41
|
+
if attributes.has_key?(:'template')
|
42
|
+
self.template = attributes[:'template']
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
47
|
+
# @return Array for valid properties with the reasons
|
48
|
+
def list_invalid_properties
|
49
|
+
invalid_properties = Array.new
|
50
|
+
if @template.nil?
|
51
|
+
invalid_properties.push('invalid value for "template", template cannot be nil.')
|
52
|
+
end
|
53
|
+
|
54
|
+
invalid_properties
|
55
|
+
end
|
56
|
+
|
57
|
+
# Check to see if the all the properties in the model are valid
|
58
|
+
# @return true if the model is valid
|
59
|
+
def valid?
|
60
|
+
return false if @template.nil?
|
61
|
+
true
|
62
|
+
end
|
63
|
+
|
64
|
+
# Checks equality by comparing each attribute.
|
65
|
+
# @param [Object] Object to be compared
|
66
|
+
def ==(o)
|
67
|
+
return true if self.equal?(o)
|
68
|
+
self.class == o.class &&
|
69
|
+
template == o.template
|
70
|
+
end
|
71
|
+
|
72
|
+
# @see the `==` method
|
73
|
+
# @param [Object] Object to be compared
|
74
|
+
def eql?(o)
|
75
|
+
self == o
|
76
|
+
end
|
77
|
+
|
78
|
+
# Calculates hash code according to all attributes.
|
79
|
+
# @return [Fixnum] Hash code
|
80
|
+
def hash
|
81
|
+
[template].hash
|
82
|
+
end
|
83
|
+
|
84
|
+
# Builds the object from hash
|
85
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
86
|
+
# @return [Object] Returns the model itself
|
87
|
+
def build_from_hash(attributes)
|
88
|
+
return nil unless attributes.is_a?(Hash)
|
89
|
+
self.class.openapi_types.each_pair do |key, type|
|
90
|
+
if type =~ /\AArray<(.*)>/i
|
91
|
+
# check to ensure the input is an array given that the the attribute
|
92
|
+
# is documented as an array but the input is not
|
93
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
94
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
95
|
+
end
|
96
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
97
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
98
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
99
|
+
end
|
100
|
+
|
101
|
+
self
|
102
|
+
end
|
103
|
+
|
104
|
+
# Deserializes the data based on type
|
105
|
+
# @param string type Data type
|
106
|
+
# @param string value Value to be deserialized
|
107
|
+
# @return [Object] Deserialized data
|
108
|
+
def _deserialize(type, value)
|
109
|
+
case type.to_sym
|
110
|
+
when :DateTime
|
111
|
+
DateTime.parse(value)
|
112
|
+
when :Date
|
113
|
+
Date.parse(value)
|
114
|
+
when :String
|
115
|
+
value.to_s
|
116
|
+
when :Integer
|
117
|
+
value.to_i
|
118
|
+
when :Float
|
119
|
+
value.to_f
|
120
|
+
when :BOOLEAN
|
121
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
122
|
+
true
|
123
|
+
else
|
124
|
+
false
|
125
|
+
end
|
126
|
+
when :Object
|
127
|
+
# generic object (usually a Hash), return directly
|
128
|
+
value
|
129
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
130
|
+
inner_type = Regexp.last_match[:inner_type]
|
131
|
+
value.map { |v| _deserialize(inner_type, v) }
|
132
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
133
|
+
k_type = Regexp.last_match[:k_type]
|
134
|
+
v_type = Regexp.last_match[:v_type]
|
135
|
+
{}.tap do |hash|
|
136
|
+
value.each do |k, v|
|
137
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
138
|
+
end
|
139
|
+
end
|
140
|
+
else # model
|
141
|
+
temp_model = DocSpring.const_get(type).new
|
142
|
+
temp_model.build_from_hash(value)
|
143
|
+
end
|
144
|
+
end
|
145
|
+
|
146
|
+
# Returns the string representation of the object
|
147
|
+
# @return [String] String presentation of the object
|
148
|
+
def to_s
|
149
|
+
to_hash.to_s
|
150
|
+
end
|
151
|
+
|
152
|
+
# to_body is an alias to to_hash (backward compatibility)
|
153
|
+
# @return [Hash] Returns the object in the form of hash
|
154
|
+
def to_body
|
155
|
+
to_hash
|
156
|
+
end
|
157
|
+
|
158
|
+
# Returns the object in the form of hash
|
159
|
+
# @return [Hash] Returns the object in the form of hash
|
160
|
+
def to_hash
|
161
|
+
hash = {}
|
162
|
+
self.class.attribute_map.each_pair do |attr, param|
|
163
|
+
value = self.send(attr)
|
164
|
+
next if value.nil?
|
165
|
+
hash[param] = _to_hash(value)
|
166
|
+
end
|
167
|
+
hash
|
168
|
+
end
|
169
|
+
|
170
|
+
# Outputs non-array value in the form of hash
|
171
|
+
# For object, use to_hash. Otherwise, just return the value
|
172
|
+
# @param [Object] value Any valid value
|
173
|
+
# @return [Hash] Returns the value in the form of hash
|
174
|
+
def _to_hash(value)
|
175
|
+
if value.is_a?(Array)
|
176
|
+
value.compact.map { |v| _to_hash(v) }
|
177
|
+
elsif value.is_a?(Hash)
|
178
|
+
{}.tap do |hash|
|
179
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
180
|
+
end
|
181
|
+
elsif value.respond_to? :to_hash
|
182
|
+
value.to_hash
|
183
|
+
else
|
184
|
+
value
|
185
|
+
end
|
186
|
+
end
|
187
|
+
end
|
188
|
+
end
|
@@ -0,0 +1,373 @@
|
|
1
|
+
=begin
|
2
|
+
#API v1
|
3
|
+
|
4
|
+
#DocSpring is a service that helps you fill out and sign PDF templates.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 3.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
|
15
|
+
module DocSpring
|
16
|
+
class HtmlTemplateData
|
17
|
+
attr_accessor :expiration_interval
|
18
|
+
|
19
|
+
attr_accessor :webhook_url
|
20
|
+
|
21
|
+
attr_accessor :scss
|
22
|
+
|
23
|
+
attr_accessor :allow_additional_properties
|
24
|
+
|
25
|
+
attr_accessor :expire_after
|
26
|
+
|
27
|
+
attr_accessor :description
|
28
|
+
|
29
|
+
attr_accessor :public_submissions
|
30
|
+
|
31
|
+
attr_accessor :slack_webhook_url
|
32
|
+
|
33
|
+
attr_accessor :header_html
|
34
|
+
|
35
|
+
attr_accessor :public_web_form
|
36
|
+
|
37
|
+
attr_accessor :editable_submissions
|
38
|
+
|
39
|
+
attr_accessor :expire_submissions
|
40
|
+
|
41
|
+
attr_accessor :name
|
42
|
+
|
43
|
+
attr_accessor :footer_html
|
44
|
+
|
45
|
+
attr_accessor :html
|
46
|
+
|
47
|
+
attr_accessor :template_type
|
48
|
+
|
49
|
+
attr_accessor :redirect_url
|
50
|
+
|
51
|
+
class EnumAttributeValidator
|
52
|
+
attr_reader :datatype
|
53
|
+
attr_reader :allowable_values
|
54
|
+
|
55
|
+
def initialize(datatype, allowable_values)
|
56
|
+
@allowable_values = allowable_values.map do |value|
|
57
|
+
case datatype.to_s
|
58
|
+
when /Integer/i
|
59
|
+
value.to_i
|
60
|
+
when /Float/i
|
61
|
+
value.to_f
|
62
|
+
else
|
63
|
+
value
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
def valid?(value)
|
69
|
+
!value || allowable_values.include?(value)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
74
|
+
def self.attribute_map
|
75
|
+
{
|
76
|
+
:'expiration_interval' => :'expiration_interval',
|
77
|
+
:'webhook_url' => :'webhook_url',
|
78
|
+
:'scss' => :'scss',
|
79
|
+
:'allow_additional_properties' => :'allow_additional_properties',
|
80
|
+
:'expire_after' => :'expire_after',
|
81
|
+
:'description' => :'description',
|
82
|
+
:'public_submissions' => :'public_submissions',
|
83
|
+
:'slack_webhook_url' => :'slack_webhook_url',
|
84
|
+
:'header_html' => :'header_html',
|
85
|
+
:'public_web_form' => :'public_web_form',
|
86
|
+
:'editable_submissions' => :'editable_submissions',
|
87
|
+
:'expire_submissions' => :'expire_submissions',
|
88
|
+
:'name' => :'name',
|
89
|
+
:'footer_html' => :'footer_html',
|
90
|
+
:'html' => :'html',
|
91
|
+
:'template_type' => :'template_type',
|
92
|
+
:'redirect_url' => :'redirect_url'
|
93
|
+
}
|
94
|
+
end
|
95
|
+
|
96
|
+
# Attribute type mapping.
|
97
|
+
def self.openapi_types
|
98
|
+
{
|
99
|
+
:'expiration_interval' => :'String',
|
100
|
+
:'webhook_url' => :'String',
|
101
|
+
:'scss' => :'String',
|
102
|
+
:'allow_additional_properties' => :'BOOLEAN',
|
103
|
+
:'expire_after' => :'Float',
|
104
|
+
:'description' => :'String',
|
105
|
+
:'public_submissions' => :'BOOLEAN',
|
106
|
+
:'slack_webhook_url' => :'String',
|
107
|
+
:'header_html' => :'String',
|
108
|
+
:'public_web_form' => :'BOOLEAN',
|
109
|
+
:'editable_submissions' => :'BOOLEAN',
|
110
|
+
:'expire_submissions' => :'BOOLEAN',
|
111
|
+
:'name' => :'String',
|
112
|
+
:'footer_html' => :'String',
|
113
|
+
:'html' => :'String',
|
114
|
+
:'template_type' => :'String',
|
115
|
+
:'redirect_url' => :'String'
|
116
|
+
}
|
117
|
+
end
|
118
|
+
|
119
|
+
# Initializes the object
|
120
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
121
|
+
def initialize(attributes = {})
|
122
|
+
return unless attributes.is_a?(Hash)
|
123
|
+
|
124
|
+
# convert string to symbol for hash key
|
125
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
126
|
+
|
127
|
+
if attributes.has_key?(:'expiration_interval')
|
128
|
+
self.expiration_interval = attributes[:'expiration_interval']
|
129
|
+
end
|
130
|
+
|
131
|
+
if attributes.has_key?(:'webhook_url')
|
132
|
+
self.webhook_url = attributes[:'webhook_url']
|
133
|
+
end
|
134
|
+
|
135
|
+
if attributes.has_key?(:'scss')
|
136
|
+
self.scss = attributes[:'scss']
|
137
|
+
end
|
138
|
+
|
139
|
+
if attributes.has_key?(:'allow_additional_properties')
|
140
|
+
self.allow_additional_properties = attributes[:'allow_additional_properties']
|
141
|
+
end
|
142
|
+
|
143
|
+
if attributes.has_key?(:'expire_after')
|
144
|
+
self.expire_after = attributes[:'expire_after']
|
145
|
+
end
|
146
|
+
|
147
|
+
if attributes.has_key?(:'description')
|
148
|
+
self.description = attributes[:'description']
|
149
|
+
end
|
150
|
+
|
151
|
+
if attributes.has_key?(:'public_submissions')
|
152
|
+
self.public_submissions = attributes[:'public_submissions']
|
153
|
+
end
|
154
|
+
|
155
|
+
if attributes.has_key?(:'slack_webhook_url')
|
156
|
+
self.slack_webhook_url = attributes[:'slack_webhook_url']
|
157
|
+
end
|
158
|
+
|
159
|
+
if attributes.has_key?(:'header_html')
|
160
|
+
self.header_html = attributes[:'header_html']
|
161
|
+
end
|
162
|
+
|
163
|
+
if attributes.has_key?(:'public_web_form')
|
164
|
+
self.public_web_form = attributes[:'public_web_form']
|
165
|
+
end
|
166
|
+
|
167
|
+
if attributes.has_key?(:'editable_submissions')
|
168
|
+
self.editable_submissions = attributes[:'editable_submissions']
|
169
|
+
end
|
170
|
+
|
171
|
+
if attributes.has_key?(:'expire_submissions')
|
172
|
+
self.expire_submissions = attributes[:'expire_submissions']
|
173
|
+
end
|
174
|
+
|
175
|
+
if attributes.has_key?(:'name')
|
176
|
+
self.name = attributes[:'name']
|
177
|
+
end
|
178
|
+
|
179
|
+
if attributes.has_key?(:'footer_html')
|
180
|
+
self.footer_html = attributes[:'footer_html']
|
181
|
+
end
|
182
|
+
|
183
|
+
if attributes.has_key?(:'html')
|
184
|
+
self.html = attributes[:'html']
|
185
|
+
end
|
186
|
+
|
187
|
+
if attributes.has_key?(:'template_type')
|
188
|
+
self.template_type = attributes[:'template_type']
|
189
|
+
end
|
190
|
+
|
191
|
+
if attributes.has_key?(:'redirect_url')
|
192
|
+
self.redirect_url = attributes[:'redirect_url']
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
196
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
197
|
+
# @return Array for valid properties with the reasons
|
198
|
+
def list_invalid_properties
|
199
|
+
invalid_properties = Array.new
|
200
|
+
invalid_properties
|
201
|
+
end
|
202
|
+
|
203
|
+
# Check to see if the all the properties in the model are valid
|
204
|
+
# @return true if the model is valid
|
205
|
+
def valid?
|
206
|
+
expiration_interval_validator = EnumAttributeValidator.new('String', ['minutes', 'hours', 'days'])
|
207
|
+
return false unless expiration_interval_validator.valid?(@expiration_interval)
|
208
|
+
template_type_validator = EnumAttributeValidator.new('String', ['pdf', 'html'])
|
209
|
+
return false unless template_type_validator.valid?(@template_type)
|
210
|
+
true
|
211
|
+
end
|
212
|
+
|
213
|
+
# Custom attribute writer method checking allowed values (enum).
|
214
|
+
# @param [Object] expiration_interval Object to be assigned
|
215
|
+
def expiration_interval=(expiration_interval)
|
216
|
+
validator = EnumAttributeValidator.new('String', ['minutes', 'hours', 'days'])
|
217
|
+
unless validator.valid?(expiration_interval)
|
218
|
+
fail ArgumentError, 'invalid value for "expiration_interval", must be one of #{validator.allowable_values}.'
|
219
|
+
end
|
220
|
+
@expiration_interval = expiration_interval
|
221
|
+
end
|
222
|
+
|
223
|
+
# Custom attribute writer method checking allowed values (enum).
|
224
|
+
# @param [Object] template_type Object to be assigned
|
225
|
+
def template_type=(template_type)
|
226
|
+
validator = EnumAttributeValidator.new('String', ['pdf', 'html'])
|
227
|
+
unless validator.valid?(template_type)
|
228
|
+
fail ArgumentError, 'invalid value for "template_type", must be one of #{validator.allowable_values}.'
|
229
|
+
end
|
230
|
+
@template_type = template_type
|
231
|
+
end
|
232
|
+
|
233
|
+
# Checks equality by comparing each attribute.
|
234
|
+
# @param [Object] Object to be compared
|
235
|
+
def ==(o)
|
236
|
+
return true if self.equal?(o)
|
237
|
+
self.class == o.class &&
|
238
|
+
expiration_interval == o.expiration_interval &&
|
239
|
+
webhook_url == o.webhook_url &&
|
240
|
+
scss == o.scss &&
|
241
|
+
allow_additional_properties == o.allow_additional_properties &&
|
242
|
+
expire_after == o.expire_after &&
|
243
|
+
description == o.description &&
|
244
|
+
public_submissions == o.public_submissions &&
|
245
|
+
slack_webhook_url == o.slack_webhook_url &&
|
246
|
+
header_html == o.header_html &&
|
247
|
+
public_web_form == o.public_web_form &&
|
248
|
+
editable_submissions == o.editable_submissions &&
|
249
|
+
expire_submissions == o.expire_submissions &&
|
250
|
+
name == o.name &&
|
251
|
+
footer_html == o.footer_html &&
|
252
|
+
html == o.html &&
|
253
|
+
template_type == o.template_type &&
|
254
|
+
redirect_url == o.redirect_url
|
255
|
+
end
|
256
|
+
|
257
|
+
# @see the `==` method
|
258
|
+
# @param [Object] Object to be compared
|
259
|
+
def eql?(o)
|
260
|
+
self == o
|
261
|
+
end
|
262
|
+
|
263
|
+
# Calculates hash code according to all attributes.
|
264
|
+
# @return [Fixnum] Hash code
|
265
|
+
def hash
|
266
|
+
[expiration_interval, webhook_url, scss, allow_additional_properties, expire_after, description, public_submissions, slack_webhook_url, header_html, public_web_form, editable_submissions, expire_submissions, name, footer_html, html, template_type, redirect_url].hash
|
267
|
+
end
|
268
|
+
|
269
|
+
# Builds the object from hash
|
270
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
271
|
+
# @return [Object] Returns the model itself
|
272
|
+
def build_from_hash(attributes)
|
273
|
+
return nil unless attributes.is_a?(Hash)
|
274
|
+
self.class.openapi_types.each_pair do |key, type|
|
275
|
+
if type =~ /\AArray<(.*)>/i
|
276
|
+
# check to ensure the input is an array given that the the attribute
|
277
|
+
# is documented as an array but the input is not
|
278
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
279
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
280
|
+
end
|
281
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
282
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
283
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
284
|
+
end
|
285
|
+
|
286
|
+
self
|
287
|
+
end
|
288
|
+
|
289
|
+
# Deserializes the data based on type
|
290
|
+
# @param string type Data type
|
291
|
+
# @param string value Value to be deserialized
|
292
|
+
# @return [Object] Deserialized data
|
293
|
+
def _deserialize(type, value)
|
294
|
+
case type.to_sym
|
295
|
+
when :DateTime
|
296
|
+
DateTime.parse(value)
|
297
|
+
when :Date
|
298
|
+
Date.parse(value)
|
299
|
+
when :String
|
300
|
+
value.to_s
|
301
|
+
when :Integer
|
302
|
+
value.to_i
|
303
|
+
when :Float
|
304
|
+
value.to_f
|
305
|
+
when :BOOLEAN
|
306
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
307
|
+
true
|
308
|
+
else
|
309
|
+
false
|
310
|
+
end
|
311
|
+
when :Object
|
312
|
+
# generic object (usually a Hash), return directly
|
313
|
+
value
|
314
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
315
|
+
inner_type = Regexp.last_match[:inner_type]
|
316
|
+
value.map { |v| _deserialize(inner_type, v) }
|
317
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
318
|
+
k_type = Regexp.last_match[:k_type]
|
319
|
+
v_type = Regexp.last_match[:v_type]
|
320
|
+
{}.tap do |hash|
|
321
|
+
value.each do |k, v|
|
322
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
323
|
+
end
|
324
|
+
end
|
325
|
+
else # model
|
326
|
+
temp_model = DocSpring.const_get(type).new
|
327
|
+
temp_model.build_from_hash(value)
|
328
|
+
end
|
329
|
+
end
|
330
|
+
|
331
|
+
# Returns the string representation of the object
|
332
|
+
# @return [String] String presentation of the object
|
333
|
+
def to_s
|
334
|
+
to_hash.to_s
|
335
|
+
end
|
336
|
+
|
337
|
+
# to_body is an alias to to_hash (backward compatibility)
|
338
|
+
# @return [Hash] Returns the object in the form of hash
|
339
|
+
def to_body
|
340
|
+
to_hash
|
341
|
+
end
|
342
|
+
|
343
|
+
# Returns the object in the form of hash
|
344
|
+
# @return [Hash] Returns the object in the form of hash
|
345
|
+
def to_hash
|
346
|
+
hash = {}
|
347
|
+
self.class.attribute_map.each_pair do |attr, param|
|
348
|
+
value = self.send(attr)
|
349
|
+
next if value.nil?
|
350
|
+
hash[param] = _to_hash(value)
|
351
|
+
end
|
352
|
+
hash
|
353
|
+
end
|
354
|
+
|
355
|
+
# Outputs non-array value in the form of hash
|
356
|
+
# For object, use to_hash. Otherwise, just return the value
|
357
|
+
# @param [Object] value Any valid value
|
358
|
+
# @return [Hash] Returns the value in the form of hash
|
359
|
+
def _to_hash(value)
|
360
|
+
if value.is_a?(Array)
|
361
|
+
value.compact.map { |v| _to_hash(v) }
|
362
|
+
elsif value.is_a?(Hash)
|
363
|
+
{}.tap do |hash|
|
364
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
365
|
+
end
|
366
|
+
elsif value.respond_to? :to_hash
|
367
|
+
value.to_hash
|
368
|
+
else
|
369
|
+
value
|
370
|
+
end
|
371
|
+
end
|
372
|
+
end
|
373
|
+
end
|