Skip to content

Commit 354e986

Browse files
author
PureCloud Jenkins
committed
131.1.0
1 parent c296be7 commit 354e986

12 files changed

Lines changed: 71 additions & 1003 deletions

build/PureCloudPlatformClientV2/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ def __call_api(self, resource_path, method,
295295
header_params['Cookie'] = self.cookie
296296
if header_params:
297297
header_params = self.sanitize_for_serialization(header_params)
298-
header_params['purecloud-sdk'] = '131.0.0'
298+
header_params['purecloud-sdk'] = '131.1.0'
299299

300300
# path parameters
301301
if path_params:

build/PureCloudPlatformClientV2/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def to_debug_report(self):
202202
"OS: {env}\n"\
203203
"Python Version: {pyversion}\n"\
204204
"Version of the API: v2\n"\
205-
"SDK Package Version: 131.0.0".\
205+
"SDK Package Version: 131.1.0".\
206206
format(env=sys.platform, pyversion=sys.version)
207207

208208
def _update_config_from_file(self):

build/PureCloudPlatformClientV2/models/certificate_details.py

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ def __init__(self):
4545
'expiration_date': 'datetime',
4646
'issue_date': 'datetime',
4747
'expired': 'bool',
48-
'valid': 'bool',
49-
'signature_valid': 'bool'
48+
'signature_valid': 'bool',
49+
'valid': 'bool'
5050
}
5151

5252
self.attribute_map = {
@@ -55,17 +55,17 @@ def __init__(self):
5555
'expiration_date': 'expirationDate',
5656
'issue_date': 'issueDate',
5757
'expired': 'expired',
58-
'valid': 'valid',
59-
'signature_valid': 'signatureValid'
58+
'signature_valid': 'signatureValid',
59+
'valid': 'valid'
6060
}
6161

6262
self._issuer = None
6363
self._subject = None
6464
self._expiration_date = None
6565
self._issue_date = None
6666
self._expired = None
67-
self._valid = None
6867
self._signature_valid = None
68+
self._valid = None
6969

7070
@property
7171
def issuer(self):
@@ -183,50 +183,50 @@ def expired(self, expired):
183183
self._expired = expired
184184

185185
@property
186-
def valid(self):
186+
def signature_valid(self):
187187
"""
188-
Gets the valid of this CertificateDetails.
188+
Gets the signature_valid of this CertificateDetails.
189189
190190
191-
:return: The valid of this CertificateDetails.
191+
:return: The signature_valid of this CertificateDetails.
192192
:rtype: bool
193193
"""
194-
return self._valid
194+
return self._signature_valid
195195

196-
@valid.setter
197-
def valid(self, valid):
196+
@signature_valid.setter
197+
def signature_valid(self, signature_valid):
198198
"""
199-
Sets the valid of this CertificateDetails.
199+
Sets the signature_valid of this CertificateDetails.
200200
201201
202-
:param valid: The valid of this CertificateDetails.
202+
:param signature_valid: The signature_valid of this CertificateDetails.
203203
:type: bool
204204
"""
205205

206-
self._valid = valid
206+
self._signature_valid = signature_valid
207207

208208
@property
209-
def signature_valid(self):
209+
def valid(self):
210210
"""
211-
Gets the signature_valid of this CertificateDetails.
211+
Gets the valid of this CertificateDetails.
212212
213213
214-
:return: The signature_valid of this CertificateDetails.
214+
:return: The valid of this CertificateDetails.
215215
:rtype: bool
216216
"""
217-
return self._signature_valid
217+
return self._valid
218218

219-
@signature_valid.setter
220-
def signature_valid(self, signature_valid):
219+
@valid.setter
220+
def valid(self, valid):
221221
"""
222-
Sets the signature_valid of this CertificateDetails.
222+
Sets the valid of this CertificateDetails.
223223
224224
225-
:param signature_valid: The signature_valid of this CertificateDetails.
225+
:param valid: The valid of this CertificateDetails.
226226
:type: bool
227227
"""
228228

229-
self._signature_valid = signature_valid
229+
self._valid = valid
230230

231231
def to_dict(self):
232232
"""

build/PureCloudPlatformClientV2/models/history_listing.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ def __init__(self):
5757
'completed': 'datetime',
5858
'entities': 'list[HistoryEntry]',
5959
'page_size': 'int',
60-
'page_number': 'int',
6160
'total': 'int',
61+
'page_number': 'int',
6262
'page_count': 'int'
6363
}
6464

@@ -80,8 +80,8 @@ def __init__(self):
8080
'completed': 'completed',
8181
'entities': 'entities',
8282
'page_size': 'pageSize',
83-
'page_number': 'pageNumber',
8483
'total': 'total',
84+
'page_number': 'pageNumber',
8585
'page_count': 'pageCount'
8686
}
8787

@@ -102,8 +102,8 @@ def __init__(self):
102102
self._completed = None
103103
self._entities = None
104104
self._page_size = None
105-
self._page_number = None
106105
self._total = None
106+
self._page_number = None
107107
self._page_count = None
108108

109109
@property
@@ -506,50 +506,50 @@ def page_size(self, page_size):
506506
self._page_size = page_size
507507

508508
@property
509-
def page_number(self):
509+
def total(self):
510510
"""
511-
Gets the page_number of this HistoryListing.
511+
Gets the total of this HistoryListing.
512512
513513
514-
:return: The page_number of this HistoryListing.
514+
:return: The total of this HistoryListing.
515515
:rtype: int
516516
"""
517-
return self._page_number
517+
return self._total
518518

519-
@page_number.setter
520-
def page_number(self, page_number):
519+
@total.setter
520+
def total(self, total):
521521
"""
522-
Sets the page_number of this HistoryListing.
522+
Sets the total of this HistoryListing.
523523
524524
525-
:param page_number: The page_number of this HistoryListing.
525+
:param total: The total of this HistoryListing.
526526
:type: int
527527
"""
528528

529-
self._page_number = page_number
529+
self._total = total
530530

531531
@property
532-
def total(self):
532+
def page_number(self):
533533
"""
534-
Gets the total of this HistoryListing.
534+
Gets the page_number of this HistoryListing.
535535
536536
537-
:return: The total of this HistoryListing.
537+
:return: The page_number of this HistoryListing.
538538
:rtype: int
539539
"""
540-
return self._total
540+
return self._page_number
541541

542-
@total.setter
543-
def total(self, total):
542+
@page_number.setter
543+
def page_number(self, page_number):
544544
"""
545-
Sets the total of this HistoryListing.
545+
Sets the page_number of this HistoryListing.
546546
547547
548-
:param total: The total of this HistoryListing.
548+
:param page_number: The page_number of this HistoryListing.
549549
:type: int
550550
"""
551551

552-
self._total = total
552+
self._page_number = page_number
553553

554554
@property
555555
def page_count(self):

build/PureCloudPlatformClientV2/models/journey_aggregation_view.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def target(self, target):
7878
:param target: The target of this JourneyAggregationView.
7979
:type: str
8080
"""
81-
allowed_values = ["nDistinctJourneyActions", "nDistinctJourneySessions", "nJourneyActionsBlocked", "nJourneyOutcomesAchieved", "nJourneyOutcomesAttributed", "nJourneySegmentsAssigned", "nJourneySessions", "nWebActionsAbandoned", "nWebActionsAccepted", "nWebActionsEngaged", "nWebActionsErrored", "nWebActionsIgnored", "nWebActionsOffered", "nWebActionsQualified", "nWebActionsQualifiedOutsideSchedule", "nWebActionsRejected", "nWebActionsStarted", "nWebActionsTimedout", "nWebActionsFrequencyCapReached", "nWebActionsOfferedOutsideSchedule"]
81+
allowed_values = ["nDistinctJourneyActions", "nDistinctJourneySessions", "nJourneyActionsBlocked", "nJourneyOutcomesAchieved", "nJourneyOutcomesAttributed", "nJourneySegmentsAssigned", "nJourneySessions", "nWebActionsAbandoned", "nWebActionsAccepted", "nWebActionsEngaged", "nWebActionsErrored", "nWebActionsIgnored", "nWebActionsOffered", "nWebActionsQualified", "nWebActionsQualifiedOutsideSchedule", "nWebActionsRejected", "nWebActionsStarted", "nWebActionsTimedout", "nWebActionsFrequencyCapReached", "nWebActionsOfferedOutsideSchedule", "oJourneyOutcomeValue"]
8282
if target.lower() not in map(str.lower, allowed_values):
8383
# print("Invalid value for target -> " + target)
8484
self._target = "outdated_sdk_version"

build/docs/CertificateDetails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ title: CertificateDetails
1212
| **expiration_date** | **datetime** | The expiration date of the certificate. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z | [optional] |
1313
| **issue_date** | **datetime** | The issue date of the certificate. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z | [optional] |
1414
| **expired** | **bool** | True if the certificate is expired, false otherwise. | [optional] |
15-
| **valid** | **bool** | | [optional] |
1615
| **signature_valid** | **bool** | | [optional] |
16+
| **valid** | **bool** | | [optional] |
1717
{: class="table table-striped"}
1818

1919

build/docs/HistoryListing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ title: HistoryListing
2424
| **completed** | **datetime** | Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z | [optional] |
2525
| **entities** | [**list[HistoryEntry]**](HistoryEntry.html) | | [optional] |
2626
| **page_size** | **int** | | [optional] |
27-
| **page_number** | **int** | | [optional] |
2827
| **total** | **int** | | [optional] |
28+
| **page_number** | **int** | | [optional] |
2929
| **page_count** | **int** | | [optional] |
3030
{: class="table table-striped"}
3131

0 commit comments

Comments
 (0)