Skip to content

Commit

Permalink
97.0.16
Browse files Browse the repository at this point in the history
PureCloud Jenkins committed Sep 16, 2020
1 parent cf1001d commit 74c540f
Showing 10 changed files with 29 additions and 29 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Platform API Client SDK - Ruby
---
![](http://ruby-gem-downloads-badge.herokuapp.com/purecloudplatformclientv2?label=97.0.15)
![](http://ruby-gem-downloads-badge.herokuapp.com/purecloudplatformclientv2?label=97.0.16)

Documentation can be found at [https://developer.mypurecloud.com/api/rest/client-libraries/ruby/](https://developer.mypurecloud.com/api/rest/client-libraries/ruby/)

@@ -10,7 +10,7 @@ Documentation can be found at [https://developer.mypurecloud.com/api/rest/client
### from rubygems.org

```{"language":"ruby"}
gem install 'purecloudplatformclientv2', '~> 97.0.15'
gem install 'purecloudplatformclientv2', '~> 97.0.16'
```

### Install from Git
4 changes: 2 additions & 2 deletions build/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Platform API Client SDK - Ruby
---
![](http://ruby-gem-downloads-badge.herokuapp.com/purecloudplatformclientv2?label=97.0.15)
![](http://ruby-gem-downloads-badge.herokuapp.com/purecloudplatformclientv2?label=97.0.16)

Documentation can be found at [https://developer.mypurecloud.com/api/rest/client-libraries/ruby/](https://developer.mypurecloud.com/api/rest/client-libraries/ruby/)

@@ -10,7 +10,7 @@ Documentation can be found at [https://developer.mypurecloud.com/api/rest/client
### from rubygems.org

```{"language":"ruby"}
gem install 'purecloudplatformclientv2', '~> 97.0.15'
gem install 'purecloudplatformclientv2', '~> 97.0.16'
```

### Install from Git
Original file line number Diff line number Diff line change
@@ -8,9 +8,9 @@ title: WfmHistoricalDataUploadRequestStatusTopicDateTime
|Name | Type | Description | Notes|
|------------ | ------------- | ------------- | -------------|
| **i_millis** | **Integer** | | [optional] |
| **before_now** | **BOOLEAN** | | [optional] |
| **after_now** | **BOOLEAN** | | [optional] |
| **equal_now** | **BOOLEAN** | | [optional] |
| **before_now** | **BOOLEAN** | | [optional] |
{: class="table table-striped"}


4 changes: 2 additions & 2 deletions build/docs/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Platform API Client SDK - Ruby
---
![](http://ruby-gem-downloads-badge.herokuapp.com/purecloudplatformclientv2?label=97.0.15)
![](http://ruby-gem-downloads-badge.herokuapp.com/purecloudplatformclientv2?label=97.0.16)

Documentation can be found at [https://developer.mypurecloud.com/api/rest/client-libraries/ruby/](https://developer.mypurecloud.com/api/rest/client-libraries/ruby/)

@@ -10,7 +10,7 @@ Documentation can be found at [https://developer.mypurecloud.com/api/rest/client
### from rubygems.org

```{"language":"ruby"}
gem install 'purecloudplatformclientv2', '~> 97.0.15'
gem install 'purecloudplatformclientv2', '~> 97.0.16'
```

### Install from Git
2 changes: 1 addition & 1 deletion build/lib/purecloudplatformclientv2/api_client.rb
Original file line number Diff line number Diff line change
@@ -76,7 +76,7 @@ def build_request(http_method, path, opts = {})
http_method = http_method.to_sym.downcase

header_params = @default_headers.merge(opts[:header_params] || {})
header_params['purecloud-sdk'] = '97.0.15'
header_params['purecloud-sdk'] = '97.0.16'
query_params = opts[:query_params] || {}
form_params = opts[:form_params] || {}

Original file line number Diff line number Diff line change
@@ -20,23 +20,23 @@ module PureCloud
class WfmHistoricalDataUploadRequestStatusTopicDateTime
attr_accessor :i_millis

attr_accessor :before_now

attr_accessor :after_now

attr_accessor :equal_now

attr_accessor :before_now

# Attribute mapping from ruby-style variable name to JSON key.
def self.attribute_map
{

:'i_millis' => :'iMillis',

:'before_now' => :'beforeNow',

:'after_now' => :'afterNow',

:'equal_now' => :'equalNow'
:'equal_now' => :'equalNow',

:'before_now' => :'beforeNow'

}
end
@@ -47,11 +47,11 @@ def self.swagger_types

:'i_millis' => :'Integer',

:'before_now' => :'BOOLEAN',

:'after_now' => :'BOOLEAN',

:'equal_now' => :'BOOLEAN'
:'equal_now' => :'BOOLEAN',

:'before_now' => :'BOOLEAN'

}
end
@@ -74,28 +74,28 @@ def initialize(attributes = {})
end


if attributes.has_key?(:'beforeNow')
if attributes.has_key?(:'afterNow')


self.before_now = attributes[:'beforeNow']
self.after_now = attributes[:'afterNow']


end


if attributes.has_key?(:'afterNow')
if attributes.has_key?(:'equalNow')


self.after_now = attributes[:'afterNow']
self.equal_now = attributes[:'equalNow']


end


if attributes.has_key?(:'equalNow')
if attributes.has_key?(:'beforeNow')


self.equal_now = attributes[:'equalNow']
self.before_now = attributes[:'beforeNow']


end
@@ -161,9 +161,9 @@ def ==(o)
return true if self.equal?(o)
self.class == o.class &&
i_millis == o.i_millis &&
before_now == o.before_now &&
after_now == o.after_now &&
equal_now == o.equal_now
equal_now == o.equal_now &&
before_now == o.before_now
end

# @see the `==` method
@@ -175,7 +175,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
[i_millis, before_now, after_now, equal_now].hash
[i_millis, after_now, equal_now, before_now].hash
end

# build the object from hash
2 changes: 1 addition & 1 deletion build/lib/purecloudplatformclientv2/version.rb
Original file line number Diff line number Diff line change
@@ -15,5 +15,5 @@
=end

module PureCloud
VERSION = "97.0.15"
VERSION = "97.0.16"
end
Binary file removed build/purecloudplatformclientv2-97.0.15.gem
Binary file not shown.
Binary file added build/purecloudplatformclientv2-97.0.16.gem
Binary file not shown.
6 changes: 3 additions & 3 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"major": 97,
"minor": 0,
"point": 15,
"point": 16,
"prerelease": "",
"apiVersion": 0,
"display": "97.0.15",
"displayFull": "97.0.15"
"display": "97.0.16",
"displayFull": "97.0.16"
}

0 comments on commit 74c540f

Please sign in to comment.