docusign_click 1.0.0.beta
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +6 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +69 -0
- data/LICENSE +21 -0
- data/README.md +80 -0
- data/Rakefile +8 -0
- data/docusign_click-1.0.0.pre.alpha.gem +0 -0
- data/docusign_click-1.0.0.rc1.gem +0 -0
- data/docusign_click.gemspec +45 -0
- data/git_push.sh +55 -0
- data/lib/.DS_Store +0 -0
- data/lib/docusign_click.rb +62 -0
- data/lib/docusign_click/.DS_Store +0 -0
- data/lib/docusign_click/api/.DS_Store +0 -0
- data/lib/docusign_click/api/accounts_api.rb +1377 -0
- data/lib/docusign_click/client/.DS_Store +0 -0
- data/lib/docusign_click/client/api_client.rb +590 -0
- data/lib/docusign_click/client/api_error.rb +37 -0
- data/lib/docusign_click/client/auth/oauth.rb +1061 -0
- data/lib/docusign_click/configuration.rb +202 -0
- data/lib/docusign_click/models/clickwrap_agreements_response.rb +226 -0
- data/lib/docusign_click/models/clickwrap_delete_response.rb +224 -0
- data/lib/docusign_click/models/clickwrap_request.rb +294 -0
- data/lib/docusign_click/models/clickwrap_scheduled_reacceptance.rb +204 -0
- data/lib/docusign_click/models/clickwrap_transfer_request.rb +194 -0
- data/lib/docusign_click/models/clickwrap_version.rb +283 -0
- data/lib/docusign_click/models/clickwrap_version_delete_response.rb +303 -0
- data/lib/docusign_click/models/clickwrap_version_response.rb +334 -0
- data/lib/docusign_click/models/clickwrap_version_summary_response.rb +313 -0
- data/lib/docusign_click/models/clickwrap_versions_delete_response.rb +206 -0
- data/lib/docusign_click/models/clickwrap_versions_paged_response.rb +246 -0
- data/lib/docusign_click/models/clickwrap_versions_response.rb +216 -0
- data/lib/docusign_click/models/clickwraps_delete_response.rb +186 -0
- data/lib/docusign_click/models/conversion_document.rb +204 -0
- data/lib/docusign_click/models/display_settings.rb +356 -0
- data/lib/docusign_click/models/document.rb +224 -0
- data/lib/docusign_click/models/document_conversion_request.rb +186 -0
- data/lib/docusign_click/models/document_conversion_response.rb +186 -0
- data/lib/docusign_click/models/error_details.rb +194 -0
- data/lib/docusign_click/models/html_result.rb +194 -0
- data/lib/docusign_click/models/recipient_copy_request.rb +184 -0
- data/lib/docusign_click/models/service_information.rb +238 -0
- data/lib/docusign_click/models/service_version.rb +194 -0
- data/lib/docusign_click/models/update_agreement_request.rb +194 -0
- data/lib/docusign_click/models/user_agreement_request.rb +204 -0
- data/lib/docusign_click/models/user_agreement_response.rb +335 -0
- data/lib/docusign_click/version.rb +14 -0
- data/tests/Gemfile +5 -0
- data/tests/Gemfile.lock +42 -0
- data/tests/docs/Test.pdf +0 -0
- data/tests/docs/private.pem +27 -0
- data/tests/spec/unit_tests_using_jwt_spec.rb +126 -0
- metadata +297 -0
@@ -0,0 +1,186 @@
|
|
1
|
+
=begin
|
2
|
+
#DocuSign Click API
|
3
|
+
|
4
|
+
#DocuSign Click lets you capture consent to standard agreement terms with a single click: terms and conditions, terms of service, terms of use, privacy policies, and more. The Click API lets you include this customizable clickwrap solution in your DocuSign integrations.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
Contact: devcenter@docusign.com
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
=end
|
11
|
+
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
module DocuSign_Click
|
15
|
+
class ClickwrapsDeleteResponse
|
16
|
+
#
|
17
|
+
attr_accessor :clickwraps
|
18
|
+
|
19
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
20
|
+
def self.attribute_map
|
21
|
+
{
|
22
|
+
:'clickwraps' => :'clickwraps'
|
23
|
+
}
|
24
|
+
end
|
25
|
+
|
26
|
+
# Attribute type mapping.
|
27
|
+
def self.swagger_types
|
28
|
+
{
|
29
|
+
:'clickwraps' => :'Array<ClickwrapDeleteResponse>'
|
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?(:'clickwraps')
|
42
|
+
if (value = attributes[:'clickwraps']).is_a?(Array)
|
43
|
+
self.clickwraps = value
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
49
|
+
# @return Array for valid properties with the reasons
|
50
|
+
def list_invalid_properties
|
51
|
+
invalid_properties = Array.new
|
52
|
+
invalid_properties
|
53
|
+
end
|
54
|
+
|
55
|
+
# Check to see if the all the properties in the model are valid
|
56
|
+
# @return true if the model is valid
|
57
|
+
def valid?
|
58
|
+
true
|
59
|
+
end
|
60
|
+
|
61
|
+
# Checks equality by comparing each attribute.
|
62
|
+
# @param [Object] Object to be compared
|
63
|
+
def ==(o)
|
64
|
+
return true if self.equal?(o)
|
65
|
+
self.class == o.class &&
|
66
|
+
clickwraps == o.clickwraps
|
67
|
+
end
|
68
|
+
|
69
|
+
# @see the `==` method
|
70
|
+
# @param [Object] Object to be compared
|
71
|
+
def eql?(o)
|
72
|
+
self == o
|
73
|
+
end
|
74
|
+
|
75
|
+
# Calculates hash code according to all attributes.
|
76
|
+
# @return [Fixnum] Hash code
|
77
|
+
def hash
|
78
|
+
[clickwraps].hash
|
79
|
+
end
|
80
|
+
|
81
|
+
# Builds the object from hash
|
82
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
83
|
+
# @return [Object] Returns the model itself
|
84
|
+
def build_from_hash(attributes)
|
85
|
+
return nil unless attributes.is_a?(Hash)
|
86
|
+
self.class.swagger_types.each_pair do |key, type|
|
87
|
+
if type =~ /\AArray<(.*)>/i
|
88
|
+
# check to ensure the input is an array given that the attribute
|
89
|
+
# is documented as an array but the input is not
|
90
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
91
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
92
|
+
end
|
93
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
94
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
95
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
96
|
+
end
|
97
|
+
|
98
|
+
self
|
99
|
+
end
|
100
|
+
|
101
|
+
# Deserializes the data based on type
|
102
|
+
# @param string type Data type
|
103
|
+
# @param string value Value to be deserialized
|
104
|
+
# @return [Object] Deserialized data
|
105
|
+
def _deserialize(type, value)
|
106
|
+
case type.to_sym
|
107
|
+
when :DateTime
|
108
|
+
DateTime.parse(value)
|
109
|
+
when :Date
|
110
|
+
Date.parse(value)
|
111
|
+
when :String
|
112
|
+
value.to_s
|
113
|
+
when :Integer
|
114
|
+
value.to_i
|
115
|
+
when :Float
|
116
|
+
value.to_f
|
117
|
+
when :BOOLEAN
|
118
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
119
|
+
true
|
120
|
+
else
|
121
|
+
false
|
122
|
+
end
|
123
|
+
when :Object
|
124
|
+
# generic object (usually a Hash), return directly
|
125
|
+
value
|
126
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
127
|
+
inner_type = Regexp.last_match[:inner_type]
|
128
|
+
value.map { |v| _deserialize(inner_type, v) }
|
129
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
130
|
+
k_type = Regexp.last_match[:k_type]
|
131
|
+
v_type = Regexp.last_match[:v_type]
|
132
|
+
{}.tap do |hash|
|
133
|
+
value.each do |k, v|
|
134
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
135
|
+
end
|
136
|
+
end
|
137
|
+
else # model
|
138
|
+
temp_model = DocuSign_Click.const_get(type).new
|
139
|
+
temp_model.build_from_hash(value)
|
140
|
+
end
|
141
|
+
end
|
142
|
+
|
143
|
+
# Returns the string representation of the object
|
144
|
+
# @return [String] String presentation of the object
|
145
|
+
def to_s
|
146
|
+
to_hash.to_s
|
147
|
+
end
|
148
|
+
|
149
|
+
# to_body is an alias to to_hash (backward compatibility)
|
150
|
+
# @return [Hash] Returns the object in the form of hash
|
151
|
+
def to_body
|
152
|
+
to_hash
|
153
|
+
end
|
154
|
+
|
155
|
+
# Returns the object in the form of hash
|
156
|
+
# @return [Hash] Returns the object in the form of hash
|
157
|
+
def to_hash
|
158
|
+
hash = {}
|
159
|
+
self.class.attribute_map.each_pair do |attr, param|
|
160
|
+
value = self.send(attr)
|
161
|
+
next if value.nil?
|
162
|
+
hash[param] = _to_hash(value)
|
163
|
+
end
|
164
|
+
hash
|
165
|
+
end
|
166
|
+
|
167
|
+
# Outputs non-array value in the form of hash
|
168
|
+
# For object, use to_hash. Otherwise, just return the value
|
169
|
+
# @param [Object] value Any valid value
|
170
|
+
# @return [Hash] Returns the value in the form of hash
|
171
|
+
def _to_hash(value)
|
172
|
+
if value.is_a?(Array)
|
173
|
+
value.compact.map { |v| _to_hash(v) }
|
174
|
+
elsif value.is_a?(Hash)
|
175
|
+
{}.tap do |hash|
|
176
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
177
|
+
end
|
178
|
+
elsif value.respond_to? :to_hash
|
179
|
+
value.to_hash
|
180
|
+
else
|
181
|
+
value
|
182
|
+
end
|
183
|
+
end
|
184
|
+
|
185
|
+
end
|
186
|
+
end
|
@@ -0,0 +1,204 @@
|
|
1
|
+
=begin
|
2
|
+
#DocuSign Click REST API
|
3
|
+
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
Contact: devcenter@docusign.com
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
=end
|
11
|
+
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
module DocuSign_Click
|
15
|
+
class ConversionDocument
|
16
|
+
#
|
17
|
+
attr_accessor :base64
|
18
|
+
|
19
|
+
#
|
20
|
+
attr_accessor :file_extension
|
21
|
+
|
22
|
+
#
|
23
|
+
attr_accessor :file_name
|
24
|
+
|
25
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
26
|
+
def self.attribute_map
|
27
|
+
{
|
28
|
+
:'base64' => :'base64',
|
29
|
+
:'file_extension' => :'fileExtension',
|
30
|
+
:'file_name' => :'fileName'
|
31
|
+
}
|
32
|
+
end
|
33
|
+
|
34
|
+
# Attribute type mapping.
|
35
|
+
def self.swagger_types
|
36
|
+
{
|
37
|
+
:'base64' => :'String',
|
38
|
+
:'file_extension' => :'String',
|
39
|
+
:'file_name' => :'String'
|
40
|
+
}
|
41
|
+
end
|
42
|
+
|
43
|
+
# Initializes the object
|
44
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
45
|
+
def initialize(attributes = {})
|
46
|
+
return unless attributes.is_a?(Hash)
|
47
|
+
|
48
|
+
# convert string to symbol for hash key
|
49
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
50
|
+
|
51
|
+
if attributes.has_key?(:'base64')
|
52
|
+
self.base64 = attributes[:'base64']
|
53
|
+
end
|
54
|
+
|
55
|
+
if attributes.has_key?(:'fileExtension')
|
56
|
+
self.file_extension = attributes[:'fileExtension']
|
57
|
+
end
|
58
|
+
|
59
|
+
if attributes.has_key?(:'fileName')
|
60
|
+
self.file_name = attributes[:'fileName']
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
65
|
+
# @return Array for valid properties with the reasons
|
66
|
+
def list_invalid_properties
|
67
|
+
invalid_properties = Array.new
|
68
|
+
invalid_properties
|
69
|
+
end
|
70
|
+
|
71
|
+
# Check to see if the all the properties in the model are valid
|
72
|
+
# @return true if the model is valid
|
73
|
+
def valid?
|
74
|
+
true
|
75
|
+
end
|
76
|
+
|
77
|
+
# Checks equality by comparing each attribute.
|
78
|
+
# @param [Object] Object to be compared
|
79
|
+
def ==(o)
|
80
|
+
return true if self.equal?(o)
|
81
|
+
self.class == o.class &&
|
82
|
+
base64 == o.base64 &&
|
83
|
+
file_extension == o.file_extension &&
|
84
|
+
file_name == o.file_name
|
85
|
+
end
|
86
|
+
|
87
|
+
# @see the `==` method
|
88
|
+
# @param [Object] Object to be compared
|
89
|
+
def eql?(o)
|
90
|
+
self == o
|
91
|
+
end
|
92
|
+
|
93
|
+
# Calculates hash code according to all attributes.
|
94
|
+
# @return [Fixnum] Hash code
|
95
|
+
def hash
|
96
|
+
[base64, file_extension, file_name].hash
|
97
|
+
end
|
98
|
+
|
99
|
+
# Builds the object from hash
|
100
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
101
|
+
# @return [Object] Returns the model itself
|
102
|
+
def build_from_hash(attributes)
|
103
|
+
return nil unless attributes.is_a?(Hash)
|
104
|
+
self.class.swagger_types.each_pair do |key, type|
|
105
|
+
if type =~ /\AArray<(.*)>/i
|
106
|
+
# check to ensure the input is an array given that the attribute
|
107
|
+
# is documented as an array but the input is not
|
108
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
109
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
110
|
+
end
|
111
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
112
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
113
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
114
|
+
end
|
115
|
+
|
116
|
+
self
|
117
|
+
end
|
118
|
+
|
119
|
+
# Deserializes the data based on type
|
120
|
+
# @param string type Data type
|
121
|
+
# @param string value Value to be deserialized
|
122
|
+
# @return [Object] Deserialized data
|
123
|
+
def _deserialize(type, value)
|
124
|
+
case type.to_sym
|
125
|
+
when :DateTime
|
126
|
+
DateTime.parse(value)
|
127
|
+
when :Date
|
128
|
+
Date.parse(value)
|
129
|
+
when :String
|
130
|
+
value.to_s
|
131
|
+
when :Integer
|
132
|
+
value.to_i
|
133
|
+
when :Float
|
134
|
+
value.to_f
|
135
|
+
when :BOOLEAN
|
136
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
137
|
+
true
|
138
|
+
else
|
139
|
+
false
|
140
|
+
end
|
141
|
+
when :Object
|
142
|
+
# generic object (usually a Hash), return directly
|
143
|
+
value
|
144
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
145
|
+
inner_type = Regexp.last_match[:inner_type]
|
146
|
+
value.map { |v| _deserialize(inner_type, v) }
|
147
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
148
|
+
k_type = Regexp.last_match[:k_type]
|
149
|
+
v_type = Regexp.last_match[:v_type]
|
150
|
+
{}.tap do |hash|
|
151
|
+
value.each do |k, v|
|
152
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
153
|
+
end
|
154
|
+
end
|
155
|
+
else # model
|
156
|
+
temp_model = DocuSign_Click.const_get(type).new
|
157
|
+
temp_model.build_from_hash(value)
|
158
|
+
end
|
159
|
+
end
|
160
|
+
|
161
|
+
# Returns the string representation of the object
|
162
|
+
# @return [String] String presentation of the object
|
163
|
+
def to_s
|
164
|
+
to_hash.to_s
|
165
|
+
end
|
166
|
+
|
167
|
+
# to_body is an alias to to_hash (backward compatibility)
|
168
|
+
# @return [Hash] Returns the object in the form of hash
|
169
|
+
def to_body
|
170
|
+
to_hash
|
171
|
+
end
|
172
|
+
|
173
|
+
# Returns the object in the form of hash
|
174
|
+
# @return [Hash] Returns the object in the form of hash
|
175
|
+
def to_hash
|
176
|
+
hash = {}
|
177
|
+
self.class.attribute_map.each_pair do |attr, param|
|
178
|
+
value = self.send(attr)
|
179
|
+
next if value.nil?
|
180
|
+
hash[param] = _to_hash(value)
|
181
|
+
end
|
182
|
+
hash
|
183
|
+
end
|
184
|
+
|
185
|
+
# Outputs non-array value in the form of hash
|
186
|
+
# For object, use to_hash. Otherwise, just return the value
|
187
|
+
# @param [Object] value Any valid value
|
188
|
+
# @return [Hash] Returns the value in the form of hash
|
189
|
+
def _to_hash(value)
|
190
|
+
if value.is_a?(Array)
|
191
|
+
value.compact.map { |v| _to_hash(v) }
|
192
|
+
elsif value.is_a?(Hash)
|
193
|
+
{}.tap do |hash|
|
194
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
195
|
+
end
|
196
|
+
elsif value.respond_to? :to_hash
|
197
|
+
value.to_hash
|
198
|
+
else
|
199
|
+
value
|
200
|
+
end
|
201
|
+
end
|
202
|
+
|
203
|
+
end
|
204
|
+
end
|
@@ -0,0 +1,356 @@
|
|
1
|
+
=begin
|
2
|
+
#DocuSign Click API
|
3
|
+
|
4
|
+
#DocuSign Click lets you capture consent to standard agreement terms with a single click: terms and conditions, terms of service, terms of use, privacy policies, and more. The Click API lets you include this customizable clickwrap solution in your DocuSign integrations.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
Contact: devcenter@docusign.com
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
=end
|
11
|
+
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
module DocuSign_Click
|
15
|
+
class DisplaySettings
|
16
|
+
#
|
17
|
+
attr_accessor :action_button_alignment
|
18
|
+
|
19
|
+
#
|
20
|
+
attr_accessor :allow_client_only
|
21
|
+
|
22
|
+
#
|
23
|
+
attr_accessor :allowed_hosts
|
24
|
+
|
25
|
+
#
|
26
|
+
attr_accessor :brand_id
|
27
|
+
|
28
|
+
#
|
29
|
+
attr_accessor :consent_button_text
|
30
|
+
|
31
|
+
#
|
32
|
+
attr_accessor :consent_text
|
33
|
+
|
34
|
+
#
|
35
|
+
attr_accessor :decline_button_text
|
36
|
+
|
37
|
+
#
|
38
|
+
attr_accessor :display_name
|
39
|
+
|
40
|
+
#
|
41
|
+
attr_accessor :document_display
|
42
|
+
|
43
|
+
#
|
44
|
+
attr_accessor :downloadable
|
45
|
+
|
46
|
+
#
|
47
|
+
attr_accessor :format
|
48
|
+
|
49
|
+
#
|
50
|
+
attr_accessor :has_decline_button
|
51
|
+
|
52
|
+
#
|
53
|
+
attr_accessor :host_origin
|
54
|
+
|
55
|
+
#
|
56
|
+
attr_accessor :must_read
|
57
|
+
|
58
|
+
#
|
59
|
+
attr_accessor :must_view
|
60
|
+
|
61
|
+
#
|
62
|
+
attr_accessor :record_decline_responses
|
63
|
+
|
64
|
+
#
|
65
|
+
attr_accessor :require_accept
|
66
|
+
|
67
|
+
#
|
68
|
+
attr_accessor :send_to_email
|
69
|
+
|
70
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
71
|
+
def self.attribute_map
|
72
|
+
{
|
73
|
+
:'action_button_alignment' => :'actionButtonAlignment',
|
74
|
+
:'allow_client_only' => :'allowClientOnly',
|
75
|
+
:'allowed_hosts' => :'allowedHosts',
|
76
|
+
:'brand_id' => :'brandId',
|
77
|
+
:'consent_button_text' => :'consentButtonText',
|
78
|
+
:'consent_text' => :'consentText',
|
79
|
+
:'decline_button_text' => :'declineButtonText',
|
80
|
+
:'display_name' => :'displayName',
|
81
|
+
:'document_display' => :'documentDisplay',
|
82
|
+
:'downloadable' => :'downloadable',
|
83
|
+
:'format' => :'format',
|
84
|
+
:'has_decline_button' => :'hasDeclineButton',
|
85
|
+
:'host_origin' => :'hostOrigin',
|
86
|
+
:'must_read' => :'mustRead',
|
87
|
+
:'must_view' => :'mustView',
|
88
|
+
:'record_decline_responses' => :'recordDeclineResponses',
|
89
|
+
:'require_accept' => :'requireAccept',
|
90
|
+
:'send_to_email' => :'sendToEmail'
|
91
|
+
}
|
92
|
+
end
|
93
|
+
|
94
|
+
# Attribute type mapping.
|
95
|
+
def self.swagger_types
|
96
|
+
{
|
97
|
+
:'action_button_alignment' => :'String',
|
98
|
+
:'allow_client_only' => :'BOOLEAN',
|
99
|
+
:'allowed_hosts' => :'Array<String>',
|
100
|
+
:'brand_id' => :'String',
|
101
|
+
:'consent_button_text' => :'String',
|
102
|
+
:'consent_text' => :'String',
|
103
|
+
:'decline_button_text' => :'String',
|
104
|
+
:'display_name' => :'String',
|
105
|
+
:'document_display' => :'String',
|
106
|
+
:'downloadable' => :'BOOLEAN',
|
107
|
+
:'format' => :'String',
|
108
|
+
:'has_decline_button' => :'BOOLEAN',
|
109
|
+
:'host_origin' => :'String',
|
110
|
+
:'must_read' => :'BOOLEAN',
|
111
|
+
:'must_view' => :'BOOLEAN',
|
112
|
+
:'record_decline_responses' => :'BOOLEAN',
|
113
|
+
:'require_accept' => :'BOOLEAN',
|
114
|
+
:'send_to_email' => :'BOOLEAN'
|
115
|
+
}
|
116
|
+
end
|
117
|
+
|
118
|
+
# Initializes the object
|
119
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
120
|
+
def initialize(attributes = {})
|
121
|
+
return unless attributes.is_a?(Hash)
|
122
|
+
|
123
|
+
# convert string to symbol for hash key
|
124
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
125
|
+
|
126
|
+
if attributes.has_key?(:'actionButtonAlignment')
|
127
|
+
self.action_button_alignment = attributes[:'actionButtonAlignment']
|
128
|
+
end
|
129
|
+
|
130
|
+
if attributes.has_key?(:'allowClientOnly')
|
131
|
+
self.allow_client_only = attributes[:'allowClientOnly']
|
132
|
+
end
|
133
|
+
|
134
|
+
if attributes.has_key?(:'allowedHosts')
|
135
|
+
if (value = attributes[:'allowedHosts']).is_a?(Array)
|
136
|
+
self.allowed_hosts = value
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
140
|
+
if attributes.has_key?(:'brandId')
|
141
|
+
self.brand_id = attributes[:'brandId']
|
142
|
+
end
|
143
|
+
|
144
|
+
if attributes.has_key?(:'consentButtonText')
|
145
|
+
self.consent_button_text = attributes[:'consentButtonText']
|
146
|
+
end
|
147
|
+
|
148
|
+
if attributes.has_key?(:'consentText')
|
149
|
+
self.consent_text = attributes[:'consentText']
|
150
|
+
end
|
151
|
+
|
152
|
+
if attributes.has_key?(:'declineButtonText')
|
153
|
+
self.decline_button_text = attributes[:'declineButtonText']
|
154
|
+
end
|
155
|
+
|
156
|
+
if attributes.has_key?(:'displayName')
|
157
|
+
self.display_name = attributes[:'displayName']
|
158
|
+
end
|
159
|
+
|
160
|
+
if attributes.has_key?(:'documentDisplay')
|
161
|
+
self.document_display = attributes[:'documentDisplay']
|
162
|
+
end
|
163
|
+
|
164
|
+
if attributes.has_key?(:'downloadable')
|
165
|
+
self.downloadable = attributes[:'downloadable']
|
166
|
+
end
|
167
|
+
|
168
|
+
if attributes.has_key?(:'format')
|
169
|
+
self.format = attributes[:'format']
|
170
|
+
end
|
171
|
+
|
172
|
+
if attributes.has_key?(:'hasDeclineButton')
|
173
|
+
self.has_decline_button = attributes[:'hasDeclineButton']
|
174
|
+
end
|
175
|
+
|
176
|
+
if attributes.has_key?(:'hostOrigin')
|
177
|
+
self.host_origin = attributes[:'hostOrigin']
|
178
|
+
end
|
179
|
+
|
180
|
+
if attributes.has_key?(:'mustRead')
|
181
|
+
self.must_read = attributes[:'mustRead']
|
182
|
+
end
|
183
|
+
|
184
|
+
if attributes.has_key?(:'mustView')
|
185
|
+
self.must_view = attributes[:'mustView']
|
186
|
+
end
|
187
|
+
|
188
|
+
if attributes.has_key?(:'recordDeclineResponses')
|
189
|
+
self.record_decline_responses = attributes[:'recordDeclineResponses']
|
190
|
+
end
|
191
|
+
|
192
|
+
if attributes.has_key?(:'requireAccept')
|
193
|
+
self.require_accept = attributes[:'requireAccept']
|
194
|
+
end
|
195
|
+
|
196
|
+
if attributes.has_key?(:'sendToEmail')
|
197
|
+
self.send_to_email = attributes[:'sendToEmail']
|
198
|
+
end
|
199
|
+
end
|
200
|
+
|
201
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
202
|
+
# @return Array for valid properties with the reasons
|
203
|
+
def list_invalid_properties
|
204
|
+
invalid_properties = Array.new
|
205
|
+
invalid_properties
|
206
|
+
end
|
207
|
+
|
208
|
+
# Check to see if the all the properties in the model are valid
|
209
|
+
# @return true if the model is valid
|
210
|
+
def valid?
|
211
|
+
true
|
212
|
+
end
|
213
|
+
|
214
|
+
# Checks equality by comparing each attribute.
|
215
|
+
# @param [Object] Object to be compared
|
216
|
+
def ==(o)
|
217
|
+
return true if self.equal?(o)
|
218
|
+
self.class == o.class &&
|
219
|
+
action_button_alignment == o.action_button_alignment &&
|
220
|
+
allow_client_only == o.allow_client_only &&
|
221
|
+
allowed_hosts == o.allowed_hosts &&
|
222
|
+
brand_id == o.brand_id &&
|
223
|
+
consent_button_text == o.consent_button_text &&
|
224
|
+
consent_text == o.consent_text &&
|
225
|
+
decline_button_text == o.decline_button_text &&
|
226
|
+
display_name == o.display_name &&
|
227
|
+
document_display == o.document_display &&
|
228
|
+
downloadable == o.downloadable &&
|
229
|
+
format == o.format &&
|
230
|
+
has_decline_button == o.has_decline_button &&
|
231
|
+
host_origin == o.host_origin &&
|
232
|
+
must_read == o.must_read &&
|
233
|
+
must_view == o.must_view &&
|
234
|
+
record_decline_responses == o.record_decline_responses &&
|
235
|
+
require_accept == o.require_accept &&
|
236
|
+
send_to_email == o.send_to_email
|
237
|
+
end
|
238
|
+
|
239
|
+
# @see the `==` method
|
240
|
+
# @param [Object] Object to be compared
|
241
|
+
def eql?(o)
|
242
|
+
self == o
|
243
|
+
end
|
244
|
+
|
245
|
+
# Calculates hash code according to all attributes.
|
246
|
+
# @return [Fixnum] Hash code
|
247
|
+
def hash
|
248
|
+
[action_button_alignment, allow_client_only, allowed_hosts, brand_id, consent_button_text, consent_text, decline_button_text, display_name, document_display, downloadable, format, has_decline_button, host_origin, must_read, must_view, record_decline_responses, require_accept, send_to_email].hash
|
249
|
+
end
|
250
|
+
|
251
|
+
# Builds the object from hash
|
252
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
253
|
+
# @return [Object] Returns the model itself
|
254
|
+
def build_from_hash(attributes)
|
255
|
+
return nil unless attributes.is_a?(Hash)
|
256
|
+
self.class.swagger_types.each_pair do |key, type|
|
257
|
+
if type =~ /\AArray<(.*)>/i
|
258
|
+
# check to ensure the input is an array given that the attribute
|
259
|
+
# is documented as an array but the input is not
|
260
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
261
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
262
|
+
end
|
263
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
264
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
265
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
266
|
+
end
|
267
|
+
|
268
|
+
self
|
269
|
+
end
|
270
|
+
|
271
|
+
# Deserializes the data based on type
|
272
|
+
# @param string type Data type
|
273
|
+
# @param string value Value to be deserialized
|
274
|
+
# @return [Object] Deserialized data
|
275
|
+
def _deserialize(type, value)
|
276
|
+
case type.to_sym
|
277
|
+
when :DateTime
|
278
|
+
DateTime.parse(value)
|
279
|
+
when :Date
|
280
|
+
Date.parse(value)
|
281
|
+
when :String
|
282
|
+
value.to_s
|
283
|
+
when :Integer
|
284
|
+
value.to_i
|
285
|
+
when :Float
|
286
|
+
value.to_f
|
287
|
+
when :BOOLEAN
|
288
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
289
|
+
true
|
290
|
+
else
|
291
|
+
false
|
292
|
+
end
|
293
|
+
when :Object
|
294
|
+
# generic object (usually a Hash), return directly
|
295
|
+
value
|
296
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
297
|
+
inner_type = Regexp.last_match[:inner_type]
|
298
|
+
value.map { |v| _deserialize(inner_type, v) }
|
299
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
300
|
+
k_type = Regexp.last_match[:k_type]
|
301
|
+
v_type = Regexp.last_match[:v_type]
|
302
|
+
{}.tap do |hash|
|
303
|
+
value.each do |k, v|
|
304
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
305
|
+
end
|
306
|
+
end
|
307
|
+
else # model
|
308
|
+
temp_model = DocuSign_Click.const_get(type).new
|
309
|
+
temp_model.build_from_hash(value)
|
310
|
+
end
|
311
|
+
end
|
312
|
+
|
313
|
+
# Returns the string representation of the object
|
314
|
+
# @return [String] String presentation of the object
|
315
|
+
def to_s
|
316
|
+
to_hash.to_s
|
317
|
+
end
|
318
|
+
|
319
|
+
# to_body is an alias to to_hash (backward compatibility)
|
320
|
+
# @return [Hash] Returns the object in the form of hash
|
321
|
+
def to_body
|
322
|
+
to_hash
|
323
|
+
end
|
324
|
+
|
325
|
+
# Returns the object in the form of hash
|
326
|
+
# @return [Hash] Returns the object in the form of hash
|
327
|
+
def to_hash
|
328
|
+
hash = {}
|
329
|
+
self.class.attribute_map.each_pair do |attr, param|
|
330
|
+
value = self.send(attr)
|
331
|
+
next if value.nil?
|
332
|
+
hash[param] = _to_hash(value)
|
333
|
+
end
|
334
|
+
hash
|
335
|
+
end
|
336
|
+
|
337
|
+
# Outputs non-array value in the form of hash
|
338
|
+
# For object, use to_hash. Otherwise, just return the value
|
339
|
+
# @param [Object] value Any valid value
|
340
|
+
# @return [Hash] Returns the value in the form of hash
|
341
|
+
def _to_hash(value)
|
342
|
+
if value.is_a?(Array)
|
343
|
+
value.compact.map { |v| _to_hash(v) }
|
344
|
+
elsif value.is_a?(Hash)
|
345
|
+
{}.tap do |hash|
|
346
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
347
|
+
end
|
348
|
+
elsif value.respond_to? :to_hash
|
349
|
+
value.to_hash
|
350
|
+
else
|
351
|
+
value
|
352
|
+
end
|
353
|
+
end
|
354
|
+
|
355
|
+
end
|
356
|
+
end
|