groupdocs_conversion_cloud 25.3 → 25.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e87da6d5c143272f87df9b601558ba3ccd3f55f3a076efb0fa2b1dc47eb3b229
|
4
|
+
data.tar.gz: 2678c0866676775ba2e5944a4a3fec999be2ea42d7eb0e3851877e1e5d32a12c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f165309a12b6d7d9ece37d6ebd8b98a0ba4118a0ebfca5280fe5524c88f48b89e2b97a26ee647bf568b4c1c9760f779aa5736846c54c9617c8ea7961afcc4250
|
7
|
+
data.tar.gz: 3531db22e1e680232f67dd10f675e34abf642fcdff1560c4bdf58d308b8c3f1a457192c6d751c0a8b63402ed92cb2092e95de19a00d079635e9fbc2dde2dd752
|
@@ -37,11 +37,15 @@ module GroupDocsConversionCloud
|
|
37
37
|
# Amount of MBs processed
|
38
38
|
attr_accessor :quantity
|
39
39
|
|
40
|
+
# Billed API calls number
|
41
|
+
attr_accessor :billed_api_calls
|
42
|
+
|
40
43
|
# Attribute mapping from ruby-style variable name to JSON key.
|
41
44
|
def self.attribute_map
|
42
45
|
{
|
43
46
|
:'credit' => :'Credit',
|
44
|
-
:'quantity' => :'Quantity'
|
47
|
+
:'quantity' => :'Quantity',
|
48
|
+
:'billed_api_calls' => :'BilledApiCalls'
|
45
49
|
}
|
46
50
|
end
|
47
51
|
|
@@ -49,7 +53,8 @@ module GroupDocsConversionCloud
|
|
49
53
|
def self.swagger_types
|
50
54
|
{
|
51
55
|
:'credit' => :'Float',
|
52
|
-
:'quantity' => :'Float'
|
56
|
+
:'quantity' => :'Float',
|
57
|
+
:'billed_api_calls' => :'Float'
|
53
58
|
}
|
54
59
|
end
|
55
60
|
|
@@ -69,6 +74,10 @@ module GroupDocsConversionCloud
|
|
69
74
|
self.quantity = attributes[:'Quantity']
|
70
75
|
end
|
71
76
|
|
77
|
+
if attributes.key?(:'BilledApiCalls')
|
78
|
+
self.billed_api_calls = attributes[:'BilledApiCalls']
|
79
|
+
end
|
80
|
+
|
72
81
|
end
|
73
82
|
|
74
83
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -83,6 +92,10 @@ module GroupDocsConversionCloud
|
|
83
92
|
invalid_properties.push("invalid value for 'quantity', quantity cannot be nil.")
|
84
93
|
end
|
85
94
|
|
95
|
+
if @billed_api_calls.nil?
|
96
|
+
invalid_properties.push("invalid value for 'billed_api_calls', billed_api_calls cannot be nil.")
|
97
|
+
end
|
98
|
+
|
86
99
|
return invalid_properties
|
87
100
|
end
|
88
101
|
|
@@ -91,6 +104,7 @@ module GroupDocsConversionCloud
|
|
91
104
|
def valid?
|
92
105
|
return false if @credit.nil?
|
93
106
|
return false if @quantity.nil?
|
107
|
+
return false if @billed_api_calls.nil?
|
94
108
|
return true
|
95
109
|
end
|
96
110
|
|
@@ -100,7 +114,8 @@ module GroupDocsConversionCloud
|
|
100
114
|
return true if self.equal?(other)
|
101
115
|
self.class == other.class &&
|
102
116
|
credit == other.credit &&
|
103
|
-
quantity == other.quantity
|
117
|
+
quantity == other.quantity &&
|
118
|
+
billed_api_calls == other.billed_api_calls
|
104
119
|
end
|
105
120
|
|
106
121
|
# @see the `==` method
|
@@ -112,7 +127,7 @@ module GroupDocsConversionCloud
|
|
112
127
|
# Calculates hash code according to all attributes.
|
113
128
|
# @return [Fixnum] Hash code
|
114
129
|
def hash
|
115
|
-
[credit, quantity].hash
|
130
|
+
[credit, quantity, billed_api_calls].hash
|
116
131
|
end
|
117
132
|
|
118
133
|
# Downcases first letter.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: groupdocs_conversion_cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '25.
|
4
|
+
version: '25.4'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GroupDocs
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|