pdf4me 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +7 -0
- data/README.md +472 -0
- data/Rakefile +8 -0
- data/docs/ActionFlow.md +8 -0
- data/docs/ApiUsageRes.md +11 -0
- data/docs/ArchiveConfig.md +11 -0
- data/docs/ArchiveJobReq.md +12 -0
- data/docs/ArchiveJobRes.md +9 -0
- data/docs/Color.md +10 -0
- data/docs/ConvertApi.md +102 -0
- data/docs/ConvertToPdf.md +10 -0
- data/docs/ConvertToPdfAction.md +10 -0
- data/docs/ConvertToPdfRes.md +8 -0
- data/docs/CreateImages.md +10 -0
- data/docs/CreateImagesRes.md +8 -0
- data/docs/CreatePdfA.md +10 -0
- data/docs/CreatePdfARes.md +8 -0
- data/docs/CustomCMSConfig.md +23 -0
- data/docs/DocAction.md +8 -0
- data/docs/DocLog.md +12 -0
- data/docs/DocMetadata.md +16 -0
- data/docs/Document.md +16 -0
- data/docs/DocumentApi.md +203 -0
- data/docs/DropDocumentReq.md +20 -0
- data/docs/DropDocumentRes.md +15 -0
- data/docs/ExecutionTrigger.md +10 -0
- data/docs/Extract.md +10 -0
- data/docs/ExtractAction.md +9 -0
- data/docs/ExtractApi.md +102 -0
- data/docs/ExtractRes.md +8 -0
- data/docs/GetDocumentListRes.md +13 -0
- data/docs/GetDocumentReq.md +14 -0
- data/docs/GetDocumentRes.md +14 -0
- data/docs/IFormFile.md +13 -0
- data/docs/Image.md +15 -0
- data/docs/ImageAction.md +30 -0
- data/docs/ImageApi.md +107 -0
- data/docs/Job.md +10 -0
- data/docs/JobApi.md +197 -0
- data/docs/JobConfig.md +18 -0
- data/docs/JobConfigRes.md +8 -0
- data/docs/KeyValuePairStringObject.md +9 -0
- data/docs/KeyValuePairStringString.md +9 -0
- data/docs/ManagementApi.md +92 -0
- data/docs/Merge.md +10 -0
- data/docs/MergeAction.md +8 -0
- data/docs/MergeApi.md +102 -0
- data/docs/MergeRes.md +8 -0
- data/docs/Notification.md +9 -0
- data/docs/OcrAction.md +12 -0
- data/docs/OcrApi.md +57 -0
- data/docs/Optimize.md +10 -0
- data/docs/OptimizeAction.md +35 -0
- data/docs/OptimizeApi.md +103 -0
- data/docs/OptimizeRes.md +9 -0
- data/docs/Page.md +14 -0
- data/docs/PageSelection.md +10 -0
- data/docs/Pdf4meAction.md +12 -0
- data/docs/Pdf4meDocument.md +32 -0
- data/docs/Pdf4meException.md +8 -0
- data/docs/PdfAAction.md +14 -0
- data/docs/PdfAApi.md +102 -0
- data/docs/PdfFont.md +9 -0
- data/docs/Pricing.md +13 -0
- data/docs/ProduceDocuments.md +14 -0
- data/docs/ProduceDocumentsRes.md +8 -0
- data/docs/ProduceOutput.md +8 -0
- data/docs/RGBSet.md +10 -0
- data/docs/RecognizeDocument.md +10 -0
- data/docs/RecognizeDocumentRes.md +9 -0
- data/docs/Rectangle.md +11 -0
- data/docs/Rotate.md +10 -0
- data/docs/RunJobRes.md +10 -0
- data/docs/SignatureConfig.md +7 -0
- data/docs/Split.md +10 -0
- data/docs/SplitAction.md +11 -0
- data/docs/SplitApi.md +103 -0
- data/docs/SplitRes.md +8 -0
- data/docs/Stamp.md +10 -0
- data/docs/StampAction.md +22 -0
- data/docs/StampApi.md +110 -0
- data/docs/StampRes.md +8 -0
- data/docs/StorageFolder.md +10 -0
- data/docs/Text.md +17 -0
- data/docs/Transform.md +13 -0
- data/docs/Translate.md +9 -0
- data/docs/UserFingerprint.md +9 -0
- data/docs/VersionRes.md +8 -0
- data/docs/java.md +425 -0
- data/git_push.sh +55 -0
- data/lib/pdf4me.rb +124 -0
- data/lib/pdf4me/api/convert_api.rb +130 -0
- data/lib/pdf4me/api/document_api.rb +218 -0
- data/lib/pdf4me/api/extract_api.rb +131 -0
- data/lib/pdf4me/api/image_api.rb +139 -0
- data/lib/pdf4me/api/job_api.rb +223 -0
- data/lib/pdf4me/api/management_api.rb +117 -0
- data/lib/pdf4me/api/merge_api.rb +131 -0
- data/lib/pdf4me/api/ocr_api.rb +74 -0
- data/lib/pdf4me/api/optimize_api.rb +139 -0
- data/lib/pdf4me/api/pdf_a_api.rb +134 -0
- data/lib/pdf4me/api/split_api.rb +135 -0
- data/lib/pdf4me/api/stamp_api.rb +159 -0
- data/lib/pdf4me/api_client.rb +380 -0
- data/lib/pdf4me/api_error.rb +38 -0
- data/lib/pdf4me/configuration.rb +109 -0
- data/lib/pdf4me/models/action_flow.rb +190 -0
- data/lib/pdf4me/models/api_usage_res.rb +219 -0
- data/lib/pdf4me/models/archive_config.rb +226 -0
- data/lib/pdf4me/models/archive_job_req.rb +249 -0
- data/lib/pdf4me/models/archive_job_res.rb +207 -0
- data/lib/pdf4me/models/color.rb +206 -0
- data/lib/pdf4me/models/convert_to_pdf.rb +209 -0
- data/lib/pdf4me/models/convert_to_pdf_action.rb +253 -0
- data/lib/pdf4me/models/convert_to_pdf_res.rb +189 -0
- data/lib/pdf4me/models/create_images.rb +209 -0
- data/lib/pdf4me/models/create_images_res.rb +189 -0
- data/lib/pdf4me/models/create_pdf_a.rb +209 -0
- data/lib/pdf4me/models/create_pdf_a_res.rb +189 -0
- data/lib/pdf4me/models/custom_cms_config.rb +323 -0
- data/lib/pdf4me/models/doc_action.rb +190 -0
- data/lib/pdf4me/models/doc_log.rb +257 -0
- data/lib/pdf4me/models/doc_metadata.rb +285 -0
- data/lib/pdf4me/models/document.rb +285 -0
- data/lib/pdf4me/models/drop_document_req.rb +348 -0
- data/lib/pdf4me/models/drop_document_res.rb +260 -0
- data/lib/pdf4me/models/execution_trigger.rb +206 -0
- data/lib/pdf4me/models/extract.rb +207 -0
- data/lib/pdf4me/models/extract_action.rb +201 -0
- data/lib/pdf4me/models/extract_res.rb +188 -0
- data/lib/pdf4me/models/get_document_list_res.rb +237 -0
- data/lib/pdf4me/models/get_document_req.rb +243 -0
- data/lib/pdf4me/models/get_document_res.rb +246 -0
- data/lib/pdf4me/models/i_form_file.rb +235 -0
- data/lib/pdf4me/models/image.rb +300 -0
- data/lib/pdf4me/models/image_action.rb +513 -0
- data/lib/pdf4me/models/job.rb +213 -0
- data/lib/pdf4me/models/job_config.rb +298 -0
- data/lib/pdf4me/models/job_config_res.rb +193 -0
- data/lib/pdf4me/models/key_value_pair_string_object.rb +197 -0
- data/lib/pdf4me/models/key_value_pair_string_string.rb +197 -0
- data/lib/pdf4me/models/merge.rb +209 -0
- data/lib/pdf4me/models/merge_action.rb +190 -0
- data/lib/pdf4me/models/merge_res.rb +188 -0
- data/lib/pdf4me/models/notification.rb +199 -0
- data/lib/pdf4me/models/ocr_action.rb +259 -0
- data/lib/pdf4me/models/optimize.rb +209 -0
- data/lib/pdf4me/models/optimize_action.rb +514 -0
- data/lib/pdf4me/models/optimize_res.rb +199 -0
- data/lib/pdf4me/models/page.rb +258 -0
- data/lib/pdf4me/models/page_selection.rb +246 -0
- data/lib/pdf4me/models/pdf4me_action.rb +259 -0
- data/lib/pdf4me/models/pdf4me_document.rb +511 -0
- data/lib/pdf4me/models/pdf4me_exception.rb +189 -0
- data/lib/pdf4me/models/pdf_a_action.rb +297 -0
- data/lib/pdf4me/models/pdf_font.rb +213 -0
- data/lib/pdf4me/models/pricing.rb +278 -0
- data/lib/pdf4me/models/produce_documents.rb +251 -0
- data/lib/pdf4me/models/produce_documents_res.rb +191 -0
- data/lib/pdf4me/models/produce_output.rb +221 -0
- data/lib/pdf4me/models/recognize_document.rb +209 -0
- data/lib/pdf4me/models/recognize_document_res.rb +198 -0
- data/lib/pdf4me/models/rectangle.rb +215 -0
- data/lib/pdf4me/models/rgb_set.rb +206 -0
- data/lib/pdf4me/models/rotate.rb +221 -0
- data/lib/pdf4me/models/run_job_res.rb +215 -0
- data/lib/pdf4me/models/signature_config.rb +179 -0
- data/lib/pdf4me/models/split.rb +207 -0
- data/lib/pdf4me/models/split_action.rb +219 -0
- data/lib/pdf4me/models/split_res.rb +190 -0
- data/lib/pdf4me/models/stamp.rb +209 -0
- data/lib/pdf4me/models/stamp_action.rb +387 -0
- data/lib/pdf4me/models/stamp_res.rb +189 -0
- data/lib/pdf4me/models/storage_folder.rb +239 -0
- data/lib/pdf4me/models/text.rb +320 -0
- data/lib/pdf4me/models/transform.rb +263 -0
- data/lib/pdf4me/models/translate.rb +207 -0
- data/lib/pdf4me/models/user_fingerprint.rb +197 -0
- data/lib/pdf4me/models/version_res.rb +188 -0
- data/lib/pdf4me/version.rb +15 -0
- data/pdf4me.gemspec +47 -0
- data/spec/api/convert_api_spec.rb +60 -0
- data/spec/api/document_api_spec.rb +83 -0
- data/spec/api/extract_api_spec.rb +60 -0
- data/spec/api/image_api_spec.rb +62 -0
- data/spec/api/job_api_spec.rb +82 -0
- data/spec/api/management_api_spec.rb +57 -0
- data/spec/api/merge_api_spec.rb +60 -0
- data/spec/api/ocr_api_spec.rb +47 -0
- data/spec/api/optimize_api_spec.rb +60 -0
- data/spec/api/pdf_a_api_spec.rb +60 -0
- data/spec/api/split_api_spec.rb +60 -0
- data/spec/api/stamp_api_spec.rb +63 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/action_flow_spec.rb +42 -0
- data/spec/models/api_usage_res_spec.rb +60 -0
- data/spec/models/archive_config_spec.rb +60 -0
- data/spec/models/archive_job_req_spec.rb +66 -0
- data/spec/models/archive_job_res_spec.rb +48 -0
- data/spec/models/color_spec.rb +54 -0
- data/spec/models/convert_to_pdf_action_spec.rb +62 -0
- data/spec/models/convert_to_pdf_res_spec.rb +42 -0
- data/spec/models/convert_to_pdf_spec.rb +54 -0
- data/spec/models/create_images_res_spec.rb +42 -0
- data/spec/models/create_images_spec.rb +54 -0
- data/spec/models/create_pdf_a_res_spec.rb +42 -0
- data/spec/models/create_pdf_a_spec.rb +54 -0
- data/spec/models/custom_cms_config_spec.rb +132 -0
- data/spec/models/doc_action_spec.rb +42 -0
- data/spec/models/doc_log_spec.rb +70 -0
- data/spec/models/doc_metadata_spec.rb +90 -0
- data/spec/models/document_spec.rb +90 -0
- data/spec/models/drop_document_req_spec.rb +118 -0
- data/spec/models/drop_document_res_spec.rb +84 -0
- data/spec/models/execution_trigger_spec.rb +54 -0
- data/spec/models/extract_action_spec.rb +48 -0
- data/spec/models/extract_res_spec.rb +42 -0
- data/spec/models/extract_spec.rb +54 -0
- data/spec/models/get_document_list_res_spec.rb +72 -0
- data/spec/models/get_document_req_spec.rb +78 -0
- data/spec/models/get_document_res_spec.rb +78 -0
- data/spec/models/i_form_file_spec.rb +72 -0
- data/spec/models/image_action_spec.rb +206 -0
- data/spec/models/image_spec.rb +88 -0
- data/spec/models/job_config_res_spec.rb +42 -0
- data/spec/models/job_config_spec.rb +102 -0
- data/spec/models/job_spec.rb +54 -0
- data/spec/models/key_value_pair_string_object_spec.rb +48 -0
- data/spec/models/key_value_pair_string_string_spec.rb +48 -0
- data/spec/models/merge_action_spec.rb +42 -0
- data/spec/models/merge_res_spec.rb +42 -0
- data/spec/models/merge_spec.rb +54 -0
- data/spec/models/notification_spec.rb +48 -0
- data/spec/models/ocr_action_spec.rb +70 -0
- data/spec/models/optimize_action_spec.rb +228 -0
- data/spec/models/optimize_res_spec.rb +48 -0
- data/spec/models/optimize_spec.rb +54 -0
- data/spec/models/page_selection_spec.rb +58 -0
- data/spec/models/page_spec.rb +78 -0
- data/spec/models/pdf4me_action_spec.rb +70 -0
- data/spec/models/pdf4me_document_spec.rb +202 -0
- data/spec/models/pdf4me_exception_spec.rb +42 -0
- data/spec/models/pdf_a_action_spec.rb +86 -0
- data/spec/models/pdf_font_spec.rb +48 -0
- data/spec/models/pricing_spec.rb +80 -0
- data/spec/models/produce_documents_res_spec.rb +42 -0
- data/spec/models/produce_documents_spec.rb +78 -0
- data/spec/models/produce_output_spec.rb +46 -0
- data/spec/models/recognize_document_res_spec.rb +48 -0
- data/spec/models/recognize_document_spec.rb +54 -0
- data/spec/models/rectangle_spec.rb +60 -0
- data/spec/models/rgb_set_spec.rb +54 -0
- data/spec/models/rotate_spec.rb +54 -0
- data/spec/models/run_job_res_spec.rb +54 -0
- data/spec/models/signature_config_spec.rb +36 -0
- data/spec/models/split_action_spec.rb +60 -0
- data/spec/models/split_res_spec.rb +42 -0
- data/spec/models/split_spec.rb +54 -0
- data/spec/models/stamp_action_spec.rb +142 -0
- data/spec/models/stamp_res_spec.rb +42 -0
- data/spec/models/stamp_spec.rb +54 -0
- data/spec/models/storage_folder_spec.rb +58 -0
- data/spec/models/text_spec.rb +104 -0
- data/spec/models/transform_spec.rb +72 -0
- data/spec/models/translate_spec.rb +48 -0
- data/spec/models/user_fingerprint_spec.rb +48 -0
- data/spec/models/version_res_spec.rb +42 -0
- data/spec/spec_helper.rb +111 -0
- metadata +594 -0
@@ -0,0 +1,285 @@
|
|
1
|
+
=begin
|
2
|
+
#DmsApi
|
3
|
+
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
|
15
|
+
module Pdf4me
|
16
|
+
|
17
|
+
class Document
|
18
|
+
# JobId of Documents WorkingSet
|
19
|
+
attr_accessor :job_id
|
20
|
+
|
21
|
+
# DocumentId
|
22
|
+
attr_accessor :document_id
|
23
|
+
|
24
|
+
# Give filename inlcuding filetype
|
25
|
+
attr_accessor :name
|
26
|
+
|
27
|
+
# Returns the Status of the Document
|
28
|
+
attr_accessor :doc_status
|
29
|
+
|
30
|
+
# Description of pages
|
31
|
+
attr_accessor :pages
|
32
|
+
|
33
|
+
attr_accessor :doc_data
|
34
|
+
|
35
|
+
attr_accessor :doc_metadata
|
36
|
+
|
37
|
+
attr_accessor :doc_logs
|
38
|
+
|
39
|
+
attr_accessor :notification
|
40
|
+
|
41
|
+
|
42
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
43
|
+
def self.attribute_map
|
44
|
+
{
|
45
|
+
:'job_id' => :'jobId',
|
46
|
+
:'document_id' => :'documentId',
|
47
|
+
:'name' => :'name',
|
48
|
+
:'doc_status' => :'docStatus',
|
49
|
+
:'pages' => :'pages',
|
50
|
+
:'doc_data' => :'docData',
|
51
|
+
:'doc_metadata' => :'docMetadata',
|
52
|
+
:'doc_logs' => :'docLogs',
|
53
|
+
:'notification' => :'notification'
|
54
|
+
}
|
55
|
+
end
|
56
|
+
|
57
|
+
# Attribute type mapping.
|
58
|
+
def self.swagger_types
|
59
|
+
{
|
60
|
+
:'job_id' => :'String',
|
61
|
+
:'document_id' => :'String',
|
62
|
+
:'name' => :'String',
|
63
|
+
:'doc_status' => :'String',
|
64
|
+
:'pages' => :'Array<Page>',
|
65
|
+
:'doc_data' => :'String',
|
66
|
+
:'doc_metadata' => :'DocMetadata',
|
67
|
+
:'doc_logs' => :'Array<DocLog>',
|
68
|
+
:'notification' => :'Notification'
|
69
|
+
}
|
70
|
+
end
|
71
|
+
|
72
|
+
# Initializes the object
|
73
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
74
|
+
def initialize(attributes = {})
|
75
|
+
return unless attributes.is_a?(Hash)
|
76
|
+
|
77
|
+
# convert string to symbol for hash key
|
78
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
79
|
+
|
80
|
+
if attributes.has_key?(:'jobId')
|
81
|
+
self.job_id = attributes[:'jobId']
|
82
|
+
end
|
83
|
+
|
84
|
+
if attributes.has_key?(:'documentId')
|
85
|
+
self.document_id = attributes[:'documentId']
|
86
|
+
end
|
87
|
+
|
88
|
+
if attributes.has_key?(:'name')
|
89
|
+
self.name = attributes[:'name']
|
90
|
+
end
|
91
|
+
|
92
|
+
if attributes.has_key?(:'docStatus')
|
93
|
+
self.doc_status = attributes[:'docStatus']
|
94
|
+
end
|
95
|
+
|
96
|
+
if attributes.has_key?(:'pages')
|
97
|
+
if (value = attributes[:'pages']).is_a?(Array)
|
98
|
+
self.pages = value
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
if attributes.has_key?(:'docData')
|
103
|
+
self.doc_data = attributes[:'docData']
|
104
|
+
end
|
105
|
+
|
106
|
+
if attributes.has_key?(:'docMetadata')
|
107
|
+
self.doc_metadata = attributes[:'docMetadata']
|
108
|
+
end
|
109
|
+
|
110
|
+
if attributes.has_key?(:'docLogs')
|
111
|
+
if (value = attributes[:'docLogs']).is_a?(Array)
|
112
|
+
self.doc_logs = value
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
if attributes.has_key?(:'notification')
|
117
|
+
self.notification = attributes[:'notification']
|
118
|
+
end
|
119
|
+
|
120
|
+
end
|
121
|
+
|
122
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
123
|
+
# @return Array for valid properties with the reasons
|
124
|
+
def list_invalid_properties
|
125
|
+
invalid_properties = Array.new
|
126
|
+
if !@doc_data.nil? && @doc_data !~ Regexp.new(/^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/)
|
127
|
+
invalid_properties.push("invalid value for 'doc_data', must conform to the pattern /^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/.")
|
128
|
+
end
|
129
|
+
|
130
|
+
return invalid_properties
|
131
|
+
end
|
132
|
+
|
133
|
+
# Check to see if the all the properties in the model are valid
|
134
|
+
# @return true if the model is valid
|
135
|
+
def valid?
|
136
|
+
return false if !@doc_data.nil? && @doc_data !~ Regexp.new(/^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/)
|
137
|
+
return true
|
138
|
+
end
|
139
|
+
|
140
|
+
# Custom attribute writer method with validation
|
141
|
+
# @param [Object] doc_data Value to be assigned
|
142
|
+
def doc_data=(doc_data)
|
143
|
+
|
144
|
+
if !doc_data.nil? && doc_data !~ Regexp.new(/^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/)
|
145
|
+
fail ArgumentError, "invalid value for 'doc_data', must conform to the pattern /^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/."
|
146
|
+
end
|
147
|
+
|
148
|
+
@doc_data = doc_data
|
149
|
+
end
|
150
|
+
|
151
|
+
# Checks equality by comparing each attribute.
|
152
|
+
# @param [Object] Object to be compared
|
153
|
+
def ==(o)
|
154
|
+
return true if self.equal?(o)
|
155
|
+
self.class == o.class &&
|
156
|
+
job_id == o.job_id &&
|
157
|
+
document_id == o.document_id &&
|
158
|
+
name == o.name &&
|
159
|
+
doc_status == o.doc_status &&
|
160
|
+
pages == o.pages &&
|
161
|
+
doc_data == o.doc_data &&
|
162
|
+
doc_metadata == o.doc_metadata &&
|
163
|
+
doc_logs == o.doc_logs &&
|
164
|
+
notification == o.notification
|
165
|
+
end
|
166
|
+
|
167
|
+
# @see the `==` method
|
168
|
+
# @param [Object] Object to be compared
|
169
|
+
def eql?(o)
|
170
|
+
self == o
|
171
|
+
end
|
172
|
+
|
173
|
+
# Calculates hash code according to all attributes.
|
174
|
+
# @return [Fixnum] Hash code
|
175
|
+
def hash
|
176
|
+
[job_id, document_id, name, doc_status, pages, doc_data, doc_metadata, doc_logs, notification].hash
|
177
|
+
end
|
178
|
+
|
179
|
+
# Builds the object from hash
|
180
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
181
|
+
# @return [Object] Returns the model itself
|
182
|
+
def build_from_hash(attributes)
|
183
|
+
return nil unless attributes.is_a?(Hash)
|
184
|
+
self.class.swagger_types.each_pair do |key, type|
|
185
|
+
if type =~ /\AArray<(.*)>/i
|
186
|
+
# check to ensure the input is an array given that the the attribute
|
187
|
+
# is documented as an array but the input is not
|
188
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
189
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
190
|
+
end
|
191
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
192
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
193
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
194
|
+
end
|
195
|
+
|
196
|
+
self
|
197
|
+
end
|
198
|
+
|
199
|
+
# Deserializes the data based on type
|
200
|
+
# @param string type Data type
|
201
|
+
# @param string value Value to be deserialized
|
202
|
+
# @return [Object] Deserialized data
|
203
|
+
def _deserialize(type, value)
|
204
|
+
case type.to_sym
|
205
|
+
when :DateTime
|
206
|
+
DateTime.parse(value)
|
207
|
+
when :Date
|
208
|
+
Date.parse(value)
|
209
|
+
when :String
|
210
|
+
value.to_s
|
211
|
+
when :Integer
|
212
|
+
value.to_i
|
213
|
+
when :Float
|
214
|
+
value.to_f
|
215
|
+
when :BOOLEAN
|
216
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
217
|
+
true
|
218
|
+
else
|
219
|
+
false
|
220
|
+
end
|
221
|
+
when :Object
|
222
|
+
# generic object (usually a Hash), return directly
|
223
|
+
value
|
224
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
225
|
+
inner_type = Regexp.last_match[:inner_type]
|
226
|
+
value.map { |v| _deserialize(inner_type, v) }
|
227
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
228
|
+
k_type = Regexp.last_match[:k_type]
|
229
|
+
v_type = Regexp.last_match[:v_type]
|
230
|
+
{}.tap do |hash|
|
231
|
+
value.each do |k, v|
|
232
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
233
|
+
end
|
234
|
+
end
|
235
|
+
else # model
|
236
|
+
temp_model = Pdf4me.const_get(type).new
|
237
|
+
temp_model.build_from_hash(value)
|
238
|
+
end
|
239
|
+
end
|
240
|
+
|
241
|
+
# Returns the string representation of the object
|
242
|
+
# @return [String] String presentation of the object
|
243
|
+
def to_s
|
244
|
+
to_hash.to_s
|
245
|
+
end
|
246
|
+
|
247
|
+
# to_body is an alias to to_hash (backward compatibility)
|
248
|
+
# @return [Hash] Returns the object in the form of hash
|
249
|
+
def to_body
|
250
|
+
to_hash
|
251
|
+
end
|
252
|
+
|
253
|
+
# Returns the object in the form of hash
|
254
|
+
# @return [Hash] Returns the object in the form of hash
|
255
|
+
def to_hash
|
256
|
+
hash = {}
|
257
|
+
self.class.attribute_map.each_pair do |attr, param|
|
258
|
+
value = self.send(attr)
|
259
|
+
next if value.nil?
|
260
|
+
hash[param] = _to_hash(value)
|
261
|
+
end
|
262
|
+
hash
|
263
|
+
end
|
264
|
+
|
265
|
+
# Outputs non-array value in the form of hash
|
266
|
+
# For object, use to_hash. Otherwise, just return the value
|
267
|
+
# @param [Object] value Any valid value
|
268
|
+
# @return [Hash] Returns the value in the form of hash
|
269
|
+
def _to_hash(value)
|
270
|
+
if value.is_a?(Array)
|
271
|
+
value.compact.map{ |v| _to_hash(v) }
|
272
|
+
elsif value.is_a?(Hash)
|
273
|
+
{}.tap do |hash|
|
274
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
275
|
+
end
|
276
|
+
elsif value.respond_to? :to_hash
|
277
|
+
value.to_hash
|
278
|
+
else
|
279
|
+
value
|
280
|
+
end
|
281
|
+
end
|
282
|
+
|
283
|
+
end
|
284
|
+
|
285
|
+
end
|
@@ -0,0 +1,348 @@
|
|
1
|
+
=begin
|
2
|
+
#DmsApi
|
3
|
+
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
|
15
|
+
module Pdf4me
|
16
|
+
|
17
|
+
class DropDocumentReq
|
18
|
+
attr_accessor :notification
|
19
|
+
|
20
|
+
attr_accessor :job_id
|
21
|
+
|
22
|
+
attr_accessor :document_id
|
23
|
+
|
24
|
+
attr_accessor :user_id
|
25
|
+
|
26
|
+
attr_accessor :url
|
27
|
+
|
28
|
+
attr_accessor :document
|
29
|
+
|
30
|
+
attr_accessor :file_name
|
31
|
+
|
32
|
+
attr_accessor :cloud_storage_provider
|
33
|
+
|
34
|
+
attr_accessor :cloud_storage_files
|
35
|
+
|
36
|
+
attr_accessor :cloud_storage_files_desc
|
37
|
+
|
38
|
+
# Run the action asynchronously, get notified for any status changes.
|
39
|
+
attr_accessor :get_notified
|
40
|
+
|
41
|
+
attr_accessor :connection_id
|
42
|
+
|
43
|
+
attr_accessor :user_fingerprint
|
44
|
+
|
45
|
+
class EnumAttributeValidator
|
46
|
+
attr_reader :datatype
|
47
|
+
attr_reader :allowable_values
|
48
|
+
|
49
|
+
def initialize(datatype, allowable_values)
|
50
|
+
@allowable_values = allowable_values.map do |value|
|
51
|
+
case datatype.to_s
|
52
|
+
when /Integer/i
|
53
|
+
value.to_i
|
54
|
+
when /Float/i
|
55
|
+
value.to_f
|
56
|
+
else
|
57
|
+
value
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
def valid?(value)
|
63
|
+
!value || allowable_values.include?(value)
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
68
|
+
def self.attribute_map
|
69
|
+
{
|
70
|
+
:'notification' => :'notification',
|
71
|
+
:'job_id' => :'jobId',
|
72
|
+
:'document_id' => :'documentId',
|
73
|
+
:'user_id' => :'userId',
|
74
|
+
:'url' => :'url',
|
75
|
+
:'document' => :'document',
|
76
|
+
:'file_name' => :'fileName',
|
77
|
+
:'cloud_storage_provider' => :'cloudStorageProvider',
|
78
|
+
:'cloud_storage_files' => :'cloudStorageFiles',
|
79
|
+
:'cloud_storage_files_desc' => :'cloudStorageFilesDesc',
|
80
|
+
:'get_notified' => :'getNotified',
|
81
|
+
:'connection_id' => :'connectionId',
|
82
|
+
:'user_fingerprint' => :'userFingerprint'
|
83
|
+
}
|
84
|
+
end
|
85
|
+
|
86
|
+
# Attribute type mapping.
|
87
|
+
def self.swagger_types
|
88
|
+
{
|
89
|
+
:'notification' => :'Notification',
|
90
|
+
:'job_id' => :'String',
|
91
|
+
:'document_id' => :'String',
|
92
|
+
:'user_id' => :'String',
|
93
|
+
:'url' => :'String',
|
94
|
+
:'document' => :'String',
|
95
|
+
:'file_name' => :'String',
|
96
|
+
:'cloud_storage_provider' => :'String',
|
97
|
+
:'cloud_storage_files' => :'Array<String>',
|
98
|
+
:'cloud_storage_files_desc' => :'String',
|
99
|
+
:'get_notified' => :'BOOLEAN',
|
100
|
+
:'connection_id' => :'String',
|
101
|
+
:'user_fingerprint' => :'UserFingerprint'
|
102
|
+
}
|
103
|
+
end
|
104
|
+
|
105
|
+
# Initializes the object
|
106
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
107
|
+
def initialize(attributes = {})
|
108
|
+
return unless attributes.is_a?(Hash)
|
109
|
+
|
110
|
+
# convert string to symbol for hash key
|
111
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
112
|
+
|
113
|
+
if attributes.has_key?(:'notification')
|
114
|
+
self.notification = attributes[:'notification']
|
115
|
+
end
|
116
|
+
|
117
|
+
if attributes.has_key?(:'jobId')
|
118
|
+
self.job_id = attributes[:'jobId']
|
119
|
+
end
|
120
|
+
|
121
|
+
if attributes.has_key?(:'documentId')
|
122
|
+
self.document_id = attributes[:'documentId']
|
123
|
+
end
|
124
|
+
|
125
|
+
if attributes.has_key?(:'userId')
|
126
|
+
self.user_id = attributes[:'userId']
|
127
|
+
end
|
128
|
+
|
129
|
+
if attributes.has_key?(:'url')
|
130
|
+
self.url = attributes[:'url']
|
131
|
+
end
|
132
|
+
|
133
|
+
if attributes.has_key?(:'document')
|
134
|
+
self.document = attributes[:'document']
|
135
|
+
end
|
136
|
+
|
137
|
+
if attributes.has_key?(:'fileName')
|
138
|
+
self.file_name = attributes[:'fileName']
|
139
|
+
end
|
140
|
+
|
141
|
+
if attributes.has_key?(:'cloudStorageProvider')
|
142
|
+
self.cloud_storage_provider = attributes[:'cloudStorageProvider']
|
143
|
+
end
|
144
|
+
|
145
|
+
if attributes.has_key?(:'cloudStorageFiles')
|
146
|
+
if (value = attributes[:'cloudStorageFiles']).is_a?(Array)
|
147
|
+
self.cloud_storage_files = value
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
151
|
+
if attributes.has_key?(:'cloudStorageFilesDesc')
|
152
|
+
self.cloud_storage_files_desc = attributes[:'cloudStorageFilesDesc']
|
153
|
+
end
|
154
|
+
|
155
|
+
if attributes.has_key?(:'getNotified')
|
156
|
+
self.get_notified = attributes[:'getNotified']
|
157
|
+
end
|
158
|
+
|
159
|
+
if attributes.has_key?(:'connectionId')
|
160
|
+
self.connection_id = attributes[:'connectionId']
|
161
|
+
end
|
162
|
+
|
163
|
+
if attributes.has_key?(:'userFingerprint')
|
164
|
+
self.user_fingerprint = attributes[:'userFingerprint']
|
165
|
+
end
|
166
|
+
|
167
|
+
end
|
168
|
+
|
169
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
170
|
+
# @return Array for valid properties with the reasons
|
171
|
+
def list_invalid_properties
|
172
|
+
invalid_properties = Array.new
|
173
|
+
if !@document.nil? && @document !~ Regexp.new(/^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/)
|
174
|
+
invalid_properties.push("invalid value for 'document', must conform to the pattern /^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/.")
|
175
|
+
end
|
176
|
+
|
177
|
+
return invalid_properties
|
178
|
+
end
|
179
|
+
|
180
|
+
# Check to see if the all the properties in the model are valid
|
181
|
+
# @return true if the model is valid
|
182
|
+
def valid?
|
183
|
+
return false if !@document.nil? && @document !~ Regexp.new(/^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/)
|
184
|
+
cloud_storage_provider_validator = EnumAttributeValidator.new('String', ["undef", "local", "url", "oneDrive", "dropbox", "googleDrive", "kloudless"])
|
185
|
+
return false unless cloud_storage_provider_validator.valid?(@cloud_storage_provider)
|
186
|
+
return true
|
187
|
+
end
|
188
|
+
|
189
|
+
# Custom attribute writer method with validation
|
190
|
+
# @param [Object] document Value to be assigned
|
191
|
+
def document=(document)
|
192
|
+
|
193
|
+
if !document.nil? && document !~ Regexp.new(/^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/)
|
194
|
+
fail ArgumentError, "invalid value for 'document', must conform to the pattern /^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/."
|
195
|
+
end
|
196
|
+
|
197
|
+
@document = document
|
198
|
+
end
|
199
|
+
|
200
|
+
# Custom attribute writer method checking allowed values (enum).
|
201
|
+
# @param [Object] cloud_storage_provider Object to be assigned
|
202
|
+
def cloud_storage_provider=(cloud_storage_provider)
|
203
|
+
validator = EnumAttributeValidator.new('String', ["undef", "local", "url", "oneDrive", "dropbox", "googleDrive", "kloudless"])
|
204
|
+
unless validator.valid?(cloud_storage_provider)
|
205
|
+
fail ArgumentError, "invalid value for 'cloud_storage_provider', must be one of #{validator.allowable_values}."
|
206
|
+
end
|
207
|
+
@cloud_storage_provider = cloud_storage_provider
|
208
|
+
end
|
209
|
+
|
210
|
+
# Checks equality by comparing each attribute.
|
211
|
+
# @param [Object] Object to be compared
|
212
|
+
def ==(o)
|
213
|
+
return true if self.equal?(o)
|
214
|
+
self.class == o.class &&
|
215
|
+
notification == o.notification &&
|
216
|
+
job_id == o.job_id &&
|
217
|
+
document_id == o.document_id &&
|
218
|
+
user_id == o.user_id &&
|
219
|
+
url == o.url &&
|
220
|
+
document == o.document &&
|
221
|
+
file_name == o.file_name &&
|
222
|
+
cloud_storage_provider == o.cloud_storage_provider &&
|
223
|
+
cloud_storage_files == o.cloud_storage_files &&
|
224
|
+
cloud_storage_files_desc == o.cloud_storage_files_desc &&
|
225
|
+
get_notified == o.get_notified &&
|
226
|
+
connection_id == o.connection_id &&
|
227
|
+
user_fingerprint == o.user_fingerprint
|
228
|
+
end
|
229
|
+
|
230
|
+
# @see the `==` method
|
231
|
+
# @param [Object] Object to be compared
|
232
|
+
def eql?(o)
|
233
|
+
self == o
|
234
|
+
end
|
235
|
+
|
236
|
+
# Calculates hash code according to all attributes.
|
237
|
+
# @return [Fixnum] Hash code
|
238
|
+
def hash
|
239
|
+
[notification, job_id, document_id, user_id, url, document, file_name, cloud_storage_provider, cloud_storage_files, cloud_storage_files_desc, get_notified, connection_id, user_fingerprint].hash
|
240
|
+
end
|
241
|
+
|
242
|
+
# Builds the object from hash
|
243
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
244
|
+
# @return [Object] Returns the model itself
|
245
|
+
def build_from_hash(attributes)
|
246
|
+
return nil unless attributes.is_a?(Hash)
|
247
|
+
self.class.swagger_types.each_pair do |key, type|
|
248
|
+
if type =~ /\AArray<(.*)>/i
|
249
|
+
# check to ensure the input is an array given that the the attribute
|
250
|
+
# is documented as an array but the input is not
|
251
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
252
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
253
|
+
end
|
254
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
255
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
256
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
257
|
+
end
|
258
|
+
|
259
|
+
self
|
260
|
+
end
|
261
|
+
|
262
|
+
# Deserializes the data based on type
|
263
|
+
# @param string type Data type
|
264
|
+
# @param string value Value to be deserialized
|
265
|
+
# @return [Object] Deserialized data
|
266
|
+
def _deserialize(type, value)
|
267
|
+
case type.to_sym
|
268
|
+
when :DateTime
|
269
|
+
DateTime.parse(value)
|
270
|
+
when :Date
|
271
|
+
Date.parse(value)
|
272
|
+
when :String
|
273
|
+
value.to_s
|
274
|
+
when :Integer
|
275
|
+
value.to_i
|
276
|
+
when :Float
|
277
|
+
value.to_f
|
278
|
+
when :BOOLEAN
|
279
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
280
|
+
true
|
281
|
+
else
|
282
|
+
false
|
283
|
+
end
|
284
|
+
when :Object
|
285
|
+
# generic object (usually a Hash), return directly
|
286
|
+
value
|
287
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
288
|
+
inner_type = Regexp.last_match[:inner_type]
|
289
|
+
value.map { |v| _deserialize(inner_type, v) }
|
290
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
291
|
+
k_type = Regexp.last_match[:k_type]
|
292
|
+
v_type = Regexp.last_match[:v_type]
|
293
|
+
{}.tap do |hash|
|
294
|
+
value.each do |k, v|
|
295
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
296
|
+
end
|
297
|
+
end
|
298
|
+
else # model
|
299
|
+
temp_model = Pdf4me.const_get(type).new
|
300
|
+
temp_model.build_from_hash(value)
|
301
|
+
end
|
302
|
+
end
|
303
|
+
|
304
|
+
# Returns the string representation of the object
|
305
|
+
# @return [String] String presentation of the object
|
306
|
+
def to_s
|
307
|
+
to_hash.to_s
|
308
|
+
end
|
309
|
+
|
310
|
+
# to_body is an alias to to_hash (backward compatibility)
|
311
|
+
# @return [Hash] Returns the object in the form of hash
|
312
|
+
def to_body
|
313
|
+
to_hash
|
314
|
+
end
|
315
|
+
|
316
|
+
# Returns the object in the form of hash
|
317
|
+
# @return [Hash] Returns the object in the form of hash
|
318
|
+
def to_hash
|
319
|
+
hash = {}
|
320
|
+
self.class.attribute_map.each_pair do |attr, param|
|
321
|
+
value = self.send(attr)
|
322
|
+
next if value.nil?
|
323
|
+
hash[param] = _to_hash(value)
|
324
|
+
end
|
325
|
+
hash
|
326
|
+
end
|
327
|
+
|
328
|
+
# Outputs non-array value in the form of hash
|
329
|
+
# For object, use to_hash. Otherwise, just return the value
|
330
|
+
# @param [Object] value Any valid value
|
331
|
+
# @return [Hash] Returns the value in the form of hash
|
332
|
+
def _to_hash(value)
|
333
|
+
if value.is_a?(Array)
|
334
|
+
value.compact.map{ |v| _to_hash(v) }
|
335
|
+
elsif value.is_a?(Hash)
|
336
|
+
{}.tap do |hash|
|
337
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
338
|
+
end
|
339
|
+
elsif value.respond_to? :to_hash
|
340
|
+
value.to_hash
|
341
|
+
else
|
342
|
+
value
|
343
|
+
end
|
344
|
+
end
|
345
|
+
|
346
|
+
end
|
347
|
+
|
348
|
+
end
|