yousign_client 1.0.2 → 1.0.3

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: e16660254fa292e73ab7138661da874af4b3d859b79ea56a0d087fb8e646ff4b
4
- data.tar.gz: c6e22f9d06dc4a7d6a51962bcb9d2ea6f9e966353cd6dbd6e29be2c001338fa9
3
+ metadata.gz: b4dce3e4d9621bbe031ce77440986a1367468c8c57c6e24933cab187f07aa72d
4
+ data.tar.gz: 1554b3fcebc40f12a5424554b4959a5bcc6dd00f62093053824dc06e19cd9c4e
5
5
  SHA512:
6
- metadata.gz: 3371d302c8ac87419e258a087cb3a009867ef6ad5b93706fbf1fae7084d4cd9254727930caa271e98f82027a68dde71ee6cece132a40d12b47ca27f3bc5318a7
7
- data.tar.gz: db82d4849020eb97e4bb90fbeb7b353d54f44212de0c35593b6d5901ae823703bd86813617143236493d72b6c04c0d3d4b66c6e46f5a069313af4ca8facdc31e
6
+ metadata.gz: 2ea6713fd6e9228f954dcf94b3375cdf796fc512a3fa3e448091e324bf1aac90b9e9904fa1a5d15fdfa8eaf6966a458d24e768bed4b7c7d078d76b7e40264b28
7
+ data.tar.gz: 024d00587dfccdfd954f0134463bdabcc0a9b18b53bc9633443a21aea35240eb99a445d851b2130063a66ed69bd3133ec947a4aa930f7c1c5db62b162755d22d
data/README.md CHANGED
@@ -7,7 +7,7 @@ For your information, the Yousign API documentation is available at https://dev.
7
7
  This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
8
8
 
9
9
  - API version: 2.1
10
- - Package version: 1.0.2
10
+ - Package version: 1.0.3
11
11
  - Build package: io.swagger.codegen.languages.RubyClientCodegen
12
12
 
13
13
  ## Installation
@@ -23,15 +23,15 @@ gem build yousign_client.gemspec
23
23
  Then either install the gem locally:
24
24
 
25
25
  ```shell
26
- gem install ./yousign_client-1.0.2.gem
26
+ gem install ./yousign_client-1.0.3.gem
27
27
  ```
28
- (for development, run `gem install --dev ./yousign_client-1.0.2.gem` to install the development dependencies)
28
+ (for development, run `gem install --dev ./yousign_client-1.0.3.gem` to install the development dependencies)
29
29
 
30
30
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
31
31
 
32
32
  Finally add this to the Gemfile:
33
33
 
34
- gem 'yousign_client', '~> 1.0.2'
34
+ gem 'yousign_client', '~> 1.0.3'
35
35
 
36
36
  ### Install from Git
37
37
 
@@ -7,5 +7,5 @@
7
7
  "gemHomepage": "https://github.com/cashbee-team/yousign_client",
8
8
  "moduleName": "YousignClient",
9
9
  "gemLicense": "Apache-2.0",
10
- "gemVersion": "1.0.2"
10
+ "gemVersion": "1.0.3"
11
11
  }
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **description** | **String** | Description of procedure | [optional]
9
9
  **created_at** | **DateTime** | Created date of the object | [optional]
10
10
  **updated_at** | **DateTime** | Updated date of the object | [optional]
11
+ **finished_at** | **DateTime** | Finished date of the object | [optional]
11
12
  **expires_at** | **DateTime** | Expiration date. The procedure will be out of usage after this date. | [optional]
12
13
  **status** | **String** | Status of the procedure | [optional]
13
14
  **creator** | **String** | Id of creator of the object | [optional]
@@ -29,6 +29,9 @@ module YousignClient
29
29
  # Updated date of the object
30
30
  attr_accessor :updated_at
31
31
 
32
+ # Finished date of the object
33
+ attr_accessor :finished_at
34
+
32
35
  # Expiration date. The procedure will be out of usage after this date.
33
36
  attr_accessor :expires_at
34
37
 
@@ -101,6 +104,7 @@ module YousignClient
101
104
  :'description' => :'description',
102
105
  :'created_at' => :'createdAt',
103
106
  :'updated_at' => :'updatedAt',
107
+ :'finished_at' => :'finishedAt',
104
108
  :'expires_at' => :'expiresAt',
105
109
  :'status' => :'status',
106
110
  :'creator' => :'creator',
@@ -127,6 +131,7 @@ module YousignClient
127
131
  :'description' => :'String',
128
132
  :'created_at' => :'DateTime',
129
133
  :'updated_at' => :'DateTime',
134
+ :'finished_at' => :'DateTime',
130
135
  :'expires_at' => :'DateTime',
131
136
  :'status' => :'String',
132
137
  :'creator' => :'String',
@@ -173,6 +178,10 @@ module YousignClient
173
178
  self.updated_at = attributes[:'updatedAt']
174
179
  end
175
180
 
181
+ if attributes.has_key?(:'finishedAt')
182
+ self.finished_at = attributes[:'finishedAt']
183
+ end
184
+
176
185
  if attributes.has_key?(:'expiresAt')
177
186
  self.expires_at = attributes[:'expiresAt']
178
187
  end
@@ -275,6 +284,7 @@ module YousignClient
275
284
  description == o.description &&
276
285
  created_at == o.created_at &&
277
286
  updated_at == o.updated_at &&
287
+ finished_at == o.finished_at &&
278
288
  expires_at == o.expires_at &&
279
289
  status == o.status &&
280
290
  creator == o.creator &&
@@ -301,7 +311,7 @@ module YousignClient
301
311
  # Calculates hash code according to all attributes.
302
312
  # @return [Fixnum] Hash code
303
313
  def hash
304
- [id, name, description, created_at, updated_at, expires_at, status, creator, creator_first_name, creator_last_name, workspace, template, ordered, parent, metadata, config, members, files, related_files_enable, archive].hash
314
+ [id, name, description, created_at, updated_at, finished_at, expires_at, status, creator, creator_first_name, creator_last_name, workspace, template, ordered, parent, metadata, config, members, files, related_files_enable, archive].hash
305
315
  end
306
316
 
307
317
  # Builds the object from hash
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.14
11
11
  =end
12
12
 
13
13
  module YousignClient
14
- VERSION = '1.0.2'
14
+ VERSION = '1.0.3'
15
15
  end
Binary file
@@ -2833,6 +2833,11 @@
2833
2833
  "format" : "date-time",
2834
2834
  "description" : "Updated date of the object"
2835
2835
  },
2836
+ "finishedAt" : {
2837
+ "type" : "string",
2838
+ "format" : "date-time",
2839
+ "description" : "Finished date of the object"
2840
+ },
2836
2841
  "expiresAt" : {
2837
2842
  "type" : "string",
2838
2843
  "format" : "date-time",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yousign_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Burgaud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-11 00:00:00.000000000 Z
11
+ date: 2020-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -475,6 +475,7 @@ files:
475
475
  - spec/models/workspace_output_spec.rb
476
476
  - spec/spec_helper.rb
477
477
  - update_client.sh
478
+ - yousign_client-1.0.2.gem
478
479
  - yousign_client.gemspec
479
480
  - yousign_openapi.json
480
481
  homepage: https://github.com/cashbee-team/yousign_client