Skip to content

Commit c5489b2

Browse files
committed
V2.2.3
1 parent 5ad302f commit c5489b2

File tree

8 files changed

+24
-24
lines changed

8 files changed

+24
-24
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARTIK Cloud Python SDK
22
======================
33

44
[![PyPI version](https://badge.fury.io/py/artikcloud.svg)](https://badge.fury.io/py/artikcloud)
5-
5+
66
This SDK helps you connect your Python scripts to ARTIK Cloud. The SDK helps authenticating with ARTIK Cloud, and exposes a number of methods to easily execute REST API calls to ARTIK Cloud.
77

88
## Requirements.

artik.properties

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
user1.id=
2-
user1.name=
3-
user1.fullname=
4-
user1.token=
5-
user1.email=
6-
user1.aid=
7-
user1.createdon=
1+
user1.id=04ddbd35d57d4d7b8f07f219c44457b2
2+
user1.name=maneesh
3+
user1.fullname=Maneesh Sahu
4+
user1.token=369d8f0f5f50483fa1c46b12e5991d84
5+
user1.email=maneesh.sahu@ssi.samsung.com
6+
user1.aid=b6951bf387b84f63b38911ae35d65e28
7+
user1.createdon=1406839290000
88

9-
device1.id=
10-
device1.token=
9+
device1.id=19da42ee01414722a6ad1224097c38d4
10+
device1.token=dc43d12e2b59495daf94631e6ddfe3e8
1111

12-
device2.id=
13-
device2.token=
12+
device2.id=16f54be9b9ce4c69be14a6c8ff33ea8d
13+
device2.token=f9f75bd0b0fc46a9a604703909f4331d
1414

15-
device3.id=
16-
device3.token=
15+
device3.id=3dd34bce025a4409ac1ff80be81b8dbc
16+
device3.token=49db2612c46342458b61af535921bdca
1717

1818
#TV
19-
device4.id=
20-
device4.token=
19+
device4.id=5c97745b1e7a4beb96edd583ad595884
20+
device4.token=56482b3f3ca948d3bc8769a003bfeb7f
2121

artikcloud/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def __init__(self, host=None, header_name=None, header_value=None, cookie=None):
7373
self.host = host
7474
self.cookie = cookie
7575
# Set default User-Agent.
76-
self.user_agent = 'Swagger-Codegen/2.2.2/python'
76+
self.user_agent = 'Swagger-Codegen/2.2.3/python'
7777

7878
@property
7979
def user_agent(self):

artikcloud/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,5 +226,5 @@ def to_debug_report(self):
226226
"OS: {env}\n"\
227227
"Python Version: {pyversion}\n"\
228228
"Version of the API: 2.0.0\n"\
229-
"SDK Package Version: 2.2.2".\
229+
"SDK Package Version: 2.2.3".\
230230
format(env=sys.platform, pyversion=sys.version)

artikcloud/models/device_type_pricing_tier.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def __init__(self, revenue_share_percent=None, tiers=None, modified_on=None, com
3131
and the value is json key in definition.
3232
"""
3333
self.swagger_types = {
34-
'revenue_share_percent': 'Object',
34+
'revenue_share_percent': 'object',
3535
'tiers': 'list[Tier]',
3636
'modified_on': 'int',
3737
'comments': 'str',
@@ -74,7 +74,7 @@ def revenue_share_percent(self):
7474
revenue share percentage
7575
7676
:return: The revenue_share_percent of this DeviceTypePricingTier.
77-
:rtype: Object
77+
:rtype: object
7878
"""
7979
return self._revenue_share_percent
8080

@@ -85,7 +85,7 @@ def revenue_share_percent(self, revenue_share_percent):
8585
revenue share percentage
8686
8787
:param revenue_share_percent: The revenue_share_percent of this DeviceTypePricingTier.
88-
:type: Object
88+
:type: object
8989
"""
9090

9191
self._revenue_share_percent = revenue_share_percent

docs/DeviceTypePricingTier.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**revenue_share_percent** | [**Object**](Object.md) | revenue share percentage | [optional]
6+
**revenue_share_percent** | **object** | revenue share percentage | [optional]
77
**tiers** | [**list[Tier]**](Tier.md) | tiers | [optional]
88
**modified_on** | **int** | modified on | [optional]
99
**comments** | **str** | comments | [optional]

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>cloud.artik</groupId>
44
<artifactId>ArtikCloudClientTests</artifactId>
55
<packaging>pom</packaging>
6-
<version>2.2.2</version>
6+
<version>2.2.3</version>
77
<name>Artik Cloud Python Client</name>
88
<build>
99
<plugins>

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from setuptools import setup, find_packages
1818

1919
NAME = "artikcloud"
20-
VERSION = "2.2.2"
20+
VERSION = "2.2.3"
2121
# To install the library, run the following
2222
#
2323
# python setup.py install

0 commit comments

Comments
 (0)