Skip to content

Commit b08a78f

Browse files
committed
Updated sources
1 parent 8ffa1b1 commit b08a78f

16 files changed

+2645
-5
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
groupdocs_conversion_cloud (25.9)
4+
groupdocs_conversion_cloud (25.10)
55
addressable (~> 2.8.0, >= 2.8.0)
66
faraday (~> 0.14.0)
77

lib/groupdocs_conversion_cloud.rb

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,23 +53,35 @@
5353
require_relative 'groupdocs_conversion_cloud/models/supported_format'
5454
require_relative 'groupdocs_conversion_cloud/models/watermark_options'
5555
require_relative 'groupdocs_conversion_cloud/models/cad_load_options'
56+
require_relative 'groupdocs_conversion_cloud/models/compression_load_options'
57+
require_relative 'groupdocs_conversion_cloud/models/database_load_options'
5658
require_relative 'groupdocs_conversion_cloud/models/diagram_load_options'
5759
require_relative 'groupdocs_conversion_cloud/models/e_book_convert_options'
60+
require_relative 'groupdocs_conversion_cloud/models/e_book_load_options'
5861
require_relative 'groupdocs_conversion_cloud/models/email_load_options'
5962
require_relative 'groupdocs_conversion_cloud/models/file_version'
63+
require_relative 'groupdocs_conversion_cloud/models/finance_load_options'
64+
require_relative 'groupdocs_conversion_cloud/models/font_load_options'
65+
require_relative 'groupdocs_conversion_cloud/models/gis_load_options'
6066
require_relative 'groupdocs_conversion_cloud/models/image_convert_options'
6167
require_relative 'groupdocs_conversion_cloud/models/image_load_options'
62-
require_relative 'groupdocs_conversion_cloud/models/one_load_options'
68+
require_relative 'groupdocs_conversion_cloud/models/mbox_load_options'
69+
require_relative 'groupdocs_conversion_cloud/models/note_load_options'
70+
require_relative 'groupdocs_conversion_cloud/models/olm_load_options'
6371
require_relative 'groupdocs_conversion_cloud/models/pdl_convert_options'
6472
require_relative 'groupdocs_conversion_cloud/models/pdf_convert_options'
6573
require_relative 'groupdocs_conversion_cloud/models/pdf_load_options'
74+
require_relative 'groupdocs_conversion_cloud/models/pdl_load_options'
6675
require_relative 'groupdocs_conversion_cloud/models/personal_storage_load_options'
6776
require_relative 'groupdocs_conversion_cloud/models/presentation_convert_options'
6877
require_relative 'groupdocs_conversion_cloud/models/presentation_load_options'
78+
require_relative 'groupdocs_conversion_cloud/models/pub_load_options'
6979
require_relative 'groupdocs_conversion_cloud/models/spreadsheet_convert_options'
7080
require_relative 'groupdocs_conversion_cloud/models/spreadsheet_load_options'
81+
require_relative 'groupdocs_conversion_cloud/models/three_d_load_options'
7182
require_relative 'groupdocs_conversion_cloud/models/txt_convert_options'
7283
require_relative 'groupdocs_conversion_cloud/models/txt_load_options'
84+
require_relative 'groupdocs_conversion_cloud/models/vcf_load_options'
7385
require_relative 'groupdocs_conversion_cloud/models/web_convert_options'
7486
require_relative 'groupdocs_conversion_cloud/models/web_load_options'
7587
require_relative 'groupdocs_conversion_cloud/models/word_processing_convert_options'
Lines changed: 224 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,224 @@
1+
#
2+
# --------------------------------------------------------------------------------------------------------------------
3+
# <copyright company="Aspose Pty Ltd" file="compression_load_options.rb">
4+
# Copyright (c) Aspose Pty Ltd
5+
# </copyright>
6+
# <summary>
7+
# Permission is hereby granted, free of charge, to any person obtaining a copy
8+
# of this software and associated documentation files (the "Software"), to deal
9+
# in the Software without restriction, including without limitation the rights
10+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
# copies of the Software, and to permit persons to whom the Software is
12+
# furnished to do so, subject to the following conditions:
13+
#
14+
# The above copyright notice and this permission notice shall be included in all
15+
# copies or substantial portions of the Software.
16+
#
17+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
# SOFTWARE.
24+
# </summary>
25+
# --------------------------------------------------------------------------------------------------------------------
26+
#
27+
28+
require 'date'
29+
30+
module GroupDocsConversionCloud
31+
# Options for loading compression documents
32+
class CompressionLoadOptions
33+
34+
# The format of input file, (\"docx\", for example). This field must be filled with correct input file format when using ConvertDirect method, which accept input file as binary stream, and, because of that, API can correctly handle LoadOptions. In regular conversion, the input file format taken from the input file name and this field ignored.
35+
attr_accessor :format
36+
37+
# Set password to load protected document.
38+
attr_accessor :password
39+
40+
# Attribute mapping from ruby-style variable name to JSON key.
41+
def self.attribute_map
42+
{
43+
:'format' => :'Format',
44+
:'password' => :'Password'
45+
}
46+
end
47+
48+
# Attribute type mapping.
49+
def self.swagger_types
50+
{
51+
:'format' => :'String',
52+
:'password' => :'String'
53+
}
54+
end
55+
56+
# Initializes the object
57+
# @param [Hash] attributes Model attributes in the form of hash
58+
def initialize(attributes = {})
59+
return unless attributes.is_a?(Hash)
60+
61+
# convert string to symbol for hash key
62+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
63+
64+
if attributes.key?(:'Format')
65+
self.format = attributes[:'Format']
66+
end
67+
68+
if attributes.key?(:'Password')
69+
self.password = attributes[:'Password']
70+
end
71+
72+
end
73+
74+
# Show invalid properties with the reasons. Usually used together with valid?
75+
# @return Array for valid properies with the reasons
76+
def list_invalid_properties
77+
invalid_properties = []
78+
return invalid_properties
79+
end
80+
81+
# Check to see if the all the properties in the model are valid
82+
# @return true if the model is valid
83+
def valid?
84+
return true
85+
end
86+
87+
# Checks equality by comparing each attribute.
88+
# @param [Object] Object to be compared
89+
def ==(other)
90+
return true if self.equal?(other)
91+
self.class == other.class &&
92+
format == other.format &&
93+
password == other.password
94+
end
95+
96+
# @see the `==` method
97+
# @param [Object] Object to be compared
98+
def eql?(other)
99+
self == other
100+
end
101+
102+
# Calculates hash code according to all attributes.
103+
# @return [Fixnum] Hash code
104+
def hash
105+
[format, password].hash
106+
end
107+
108+
# Downcases first letter.
109+
# @return downcased string
110+
def uncap(str)
111+
str[0, 1].downcase + str[1..-1]
112+
end
113+
114+
# Builds the object from hash
115+
# @param [Hash] attributes Model attributes in the form of hash
116+
# @return [Object] Returns the model itself
117+
def build_from_hash(attributes)
118+
return nil unless attributes.is_a?(Hash)
119+
self.class.swagger_types.each_pair do |key, type|
120+
pname = uncap(self.class.attribute_map[key]).intern
121+
value = attributes[pname]
122+
if type =~ /\AArray<(.*)>/i
123+
# check to ensure the input is an array given that the the attribute
124+
# is documented as an array but the input is not
125+
if value.is_a?(Array)
126+
self.send("#{key}=", value.map { |v| _deserialize($1, v) })
127+
end
128+
elsif !value.nil?
129+
self.send("#{key}=", _deserialize(type, value))
130+
end
131+
# or else data not found in attributes(hash), not an issue as the data can be optional
132+
end
133+
134+
self
135+
end
136+
137+
# Deserializes the data based on type
138+
# @param string type Data type
139+
# @param string value Value to be deserialized
140+
# @return [Object] Deserialized data
141+
def _deserialize(type, value)
142+
case type.to_sym
143+
when :DateTime
144+
Date.parse value
145+
when :Date
146+
Date.parse value
147+
when :String
148+
value.to_s
149+
when :Integer
150+
value.to_i
151+
when :Float
152+
value.to_f
153+
when :BOOLEAN
154+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
155+
true
156+
else
157+
false
158+
end
159+
when :Object
160+
# generic object (usually a Hash), return directly
161+
value
162+
when /\AArray<(?<inner_type>.+)>\z/
163+
inner_type = Regexp.last_match[:inner_type]
164+
value.map { |v| _deserialize(inner_type, v) }
165+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
166+
k_type = Regexp.last_match[:k_type]
167+
v_type = Regexp.last_match[:v_type]
168+
{}.tap do |hash|
169+
value.each do |k, v|
170+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
171+
end
172+
end
173+
else
174+
# model
175+
temp_model = GroupDocsConversionCloud.const_get(type).new
176+
temp_model.build_from_hash(value)
177+
end
178+
end
179+
180+
# Returns the string representation of the object
181+
# @return [String] String presentation of the object
182+
def to_s
183+
to_hash.to_s
184+
end
185+
186+
# to_body is an alias to to_hash (backward compatibility)
187+
# @return [Hash] Returns the object in the form of hash
188+
def to_body
189+
to_hash
190+
end
191+
192+
# Returns the object in the form of hash
193+
# @return [Hash] Returns the object in the form of hash
194+
def to_hash
195+
hash = {}
196+
self.class.attribute_map.each_pair do |attr, param|
197+
value = self.send(attr)
198+
next if value.nil?
199+
hash[param] = _to_hash(value)
200+
end
201+
hash
202+
end
203+
204+
# Outputs non-array value in the form of hash
205+
# For object, use to_hash. Otherwise, just return the value
206+
# @param [Object] value Any valid value
207+
# @return [Hash] Returns the value in the form of hash
208+
def _to_hash(value)
209+
if value.is_a?(Array)
210+
value.compact.map { |v| _to_hash(v) }
211+
elsif value.is_a?(Hash)
212+
{}.tap do |hash|
213+
value.each { |k, v| hash[k] = _to_hash(v) }
214+
end
215+
elsif value.respond_to? :to_hash
216+
value.to_hash
217+
else
218+
value
219+
end
220+
end
221+
222+
end
223+
224+
end

0 commit comments

Comments
 (0)