Skip to content

Commit

Permalink
4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PureCloud Jenkins committed Mar 8, 2019
1 parent f03f12e commit 31a2a2b
Show file tree
Hide file tree
Showing 215 changed files with 979 additions and 936 deletions.
2 changes: 1 addition & 1 deletion build/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'com.mypurecloud'
version = '3.0.0'
version = '4.0.0'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build/docs/JourneyCustomer.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ispreview: true
| Name | Type | Description | Notes |
| ------------ | ------------- | ------------- | ------------- |
| **id** | **String** | An ID of a customer within the Journey System at a point-in-time. Note that a customer entity can have multiple customerIds based on the stitching process. Depending on the context within the PureCloud conversation, this may or may not be mutable. | |
| **type** | **String** | The type of the customerId within the Journey System (e.g. cookie). | |
| **idType** | **String** | The type of the customerId within the Journey System (e.g. cookie). | |
{: class="table table-striped"}


Expand Down
2 changes: 1 addition & 1 deletion build/docs/JourneyCustomerSession.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ispreview: true
| Name | Type | Description | Notes |
| ------------ | ------------- | ------------- | ------------- |
| **id** | **String** | An ID of a Customer/User's session within the Journey System at a point-in-time | |
| **type** | **String** | The type of the Customer/User's session ID within the Journey System (e.g. web, app) | |
| **type** | **String** | The type of the Customer/User's session within the Journey System (e.g. web, app) | |
{: class="table table-striped"}


Expand Down
1 change: 1 addition & 0 deletions build/docs/WebChatGuestMediaRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ ispreview: true
| **types** | **List<String>** | The types of media being requested. | |
| **state** | [**StateEnum**](#StateEnum) | The state of the media request, one of PENDING|ACCEPTED|DECLINED|TIMEDOUT|CANCELLED|ERRORED. | |
| **communicationId** | **String** | The ID of the new media communication, if applicable. | [optional] |
| **securityKey** | **String** | The security information related to a media request. | [optional] |
| **selfUri** | **String** | The URI for this object | [optional] |
{: class="table table-striped"}

Expand Down
2 changes: 1 addition & 1 deletion build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>purecloud-guest-chat-client</artifactId>
<packaging>jar</packaging>
<name>purecloud-guest-chat-client</name>
<version>3.0.0</version>
<version>4.0.0</version>
<description>A Java package to interface with the PureCloud Platform API Guest Chat APIs</description>
<url>https://developer.mypurecloud.com/api/rest/client-libraries/java-guest/</url>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ public static ApiClient defaultClient() {
private Builder(ConnectorProperties properties) {
this.properties = (properties != null) ? properties.copy() : new ConnectorProperties();
withUserAgent(DEFAULT_USER_AGENT);
withDefaultHeader("purecloud-sdk", "3.0.0");
withDefaultHeader("purecloud-sdk", "4.0.0");
}

public Builder withDefaultHeader(String header, String value) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
public class JourneyCustomer implements Serializable {

private String id = null;
private String type = null;
private String idType = null;


/**
Expand All @@ -39,18 +39,18 @@ public void setId(String id) {
/**
* The type of the customerId within the Journey System (e.g. cookie).
**/
public JourneyCustomer type(String type) {
this.type = type;
public JourneyCustomer idType(String idType) {
this.idType = idType;
return this;
}

@ApiModelProperty(example = "null", required = true, value = "The type of the customerId within the Journey System (e.g. cookie).")
@JsonProperty("type")
public String getType() {
return type;
@JsonProperty("idType")
public String getIdType() {
return idType;
}
public void setType(String type) {
this.type = type;
public void setIdType(String idType) {
this.idType = idType;
}


Expand All @@ -65,12 +65,12 @@ public boolean equals(java.lang.Object o) {
}
JourneyCustomer journeyCustomer = (JourneyCustomer) o;
return Objects.equals(this.id, journeyCustomer.id) &&
Objects.equals(this.type, journeyCustomer.type);
Objects.equals(this.idType, journeyCustomer.idType);
}

@Override
public int hashCode() {
return Objects.hash(id, type);
return Objects.hash(id, idType);
}

@Override
Expand All @@ -79,7 +79,7 @@ public String toString() {
sb.append("class JourneyCustomer {\n");

sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" idType: ").append(toIndentedString(idType)).append("\n");
sb.append("}");
return sb.toString();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ public void setId(String id) {


/**
* The type of the Customer/User's session ID within the Journey System (e.g. web, app)
* The type of the Customer/User's session within the Journey System (e.g. web, app)
**/
public JourneyCustomerSession type(String type) {
this.type = type;
return this;
}

@ApiModelProperty(example = "null", required = true, value = "The type of the Customer/User's session ID within the Journey System (e.g. web, app)")
@ApiModelProperty(example = "null", required = true, value = "The type of the Customer/User's session within the Journey System (e.g. web, app)")
@JsonProperty("type")
public String getType() {
return type;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ public String toString() {
}
private StateEnum state = null;
private String communicationId = null;
private String securityKey = null;
private String selfUri = null;


Expand Down Expand Up @@ -175,6 +176,24 @@ public void setCommunicationId(String communicationId) {
}


/**
* The security information related to a media request.
**/
public WebChatGuestMediaRequest securityKey(String securityKey) {
this.securityKey = securityKey;
return this;
}

@ApiModelProperty(example = "null", value = "The security information related to a media request.")
@JsonProperty("securityKey")
public String getSecurityKey() {
return securityKey;
}
public void setSecurityKey(String securityKey) {
this.securityKey = securityKey;
}


@ApiModelProperty(example = "null", value = "The URI for this object")
@JsonProperty("selfUri")
public String getSelfUri() {
Expand All @@ -197,12 +216,13 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.types, webChatGuestMediaRequest.types) &&
Objects.equals(this.state, webChatGuestMediaRequest.state) &&
Objects.equals(this.communicationId, webChatGuestMediaRequest.communicationId) &&
Objects.equals(this.securityKey, webChatGuestMediaRequest.securityKey) &&
Objects.equals(this.selfUri, webChatGuestMediaRequest.selfUri);
}

@Override
public int hashCode() {
return Objects.hash(id, name, types, state, communicationId, selfUri);
return Objects.hash(id, name, types, state, communicationId, securityKey, selfUri);
}

@Override
Expand All @@ -215,6 +235,7 @@ public String toString() {
sb.append(" types: ").append(toIndentedString(types)).append("\n");
sb.append(" state: ").append(toIndentedString(state)).append("\n");
sb.append(" communicationId: ").append(toIndentedString(communicationId)).append("\n");
sb.append(" securityKey: ").append(toIndentedString(securityKey)).append("\n");
sb.append(" selfUri: ").append(toIndentedString(selfUri)).append("\n");
sb.append("}");
return sb.toString();
Expand Down
6 changes: 3 additions & 3 deletions build/target/apidocs/allclasses-frame.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_202) on Fri Feb 22 10:45:27 UTC 2019 -->
<!-- Generated by javadoc (1.8.0_202) on Fri Mar 08 10:44:00 UTC 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (purecloud-guest-chat-client 3.0.0 API)</title>
<meta name="date" content="2019-02-22">
<title>All Classes (purecloud-guest-chat-client 4.0.0 API)</title>
<meta name="date" content="2019-03-08">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
Expand Down
6 changes: 3 additions & 3 deletions build/target/apidocs/allclasses-noframe.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_202) on Fri Feb 22 10:45:27 UTC 2019 -->
<!-- Generated by javadoc (1.8.0_202) on Fri Mar 08 10:44:00 UTC 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (purecloud-guest-chat-client 3.0.0 API)</title>
<meta name="date" content="2019-02-22">
<title>All Classes (purecloud-guest-chat-client 4.0.0 API)</title>
<meta name="date" content="2019-03-08">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_202) on Fri Feb 22 10:45:26 UTC 2019 -->
<!-- Generated by javadoc (1.8.0_202) on Fri Mar 08 10:43:59 UTC 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ApiClient.Builder (purecloud-guest-chat-client 3.0.0 API)</title>
<meta name="date" content="2019-02-22">
<title>ApiClient.Builder (purecloud-guest-chat-client 4.0.0 API)</title>
<meta name="date" content="2019-03-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ApiClient.Builder (purecloud-guest-chat-client 3.0.0 API)";
parent.document.title="ApiClient.Builder (purecloud-guest-chat-client 4.0.0 API)";
}
}
catch(err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_202) on Fri Feb 22 10:45:26 UTC 2019 -->
<!-- Generated by javadoc (1.8.0_202) on Fri Mar 08 10:43:59 UTC 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ApiClient (purecloud-guest-chat-client 3.0.0 API)</title>
<meta name="date" content="2019-02-22">
<title>ApiClient (purecloud-guest-chat-client 4.0.0 API)</title>
<meta name="date" content="2019-03-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ApiClient (purecloud-guest-chat-client 3.0.0 API)";
parent.document.title="ApiClient (purecloud-guest-chat-client 4.0.0 API)";
}
}
catch(err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_202) on Fri Feb 22 10:45:26 UTC 2019 -->
<!-- Generated by javadoc (1.8.0_202) on Fri Mar 08 10:43:59 UTC 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ApiDateFormat (purecloud-guest-chat-client 3.0.0 API)</title>
<meta name="date" content="2019-02-22">
<title>ApiDateFormat (purecloud-guest-chat-client 4.0.0 API)</title>
<meta name="date" content="2019-03-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ApiDateFormat (purecloud-guest-chat-client 3.0.0 API)";
parent.document.title="ApiDateFormat (purecloud-guest-chat-client 4.0.0 API)";
}
}
catch(err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_202) on Fri Feb 22 10:45:26 UTC 2019 -->
<!-- Generated by javadoc (1.8.0_202) on Fri Mar 08 10:43:59 UTC 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ApiException (purecloud-guest-chat-client 3.0.0 API)</title>
<meta name="date" content="2019-02-22">
<title>ApiException (purecloud-guest-chat-client 4.0.0 API)</title>
<meta name="date" content="2019-03-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ApiException (purecloud-guest-chat-client 3.0.0 API)";
parent.document.title="ApiException (purecloud-guest-chat-client 4.0.0 API)";
}
}
catch(err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_202) on Fri Feb 22 10:45:26 UTC 2019 -->
<!-- Generated by javadoc (1.8.0_202) on Fri Mar 08 10:43:59 UTC 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ApiRequest (purecloud-guest-chat-client 3.0.0 API)</title>
<meta name="date" content="2019-02-22">
<title>ApiRequest (purecloud-guest-chat-client 4.0.0 API)</title>
<meta name="date" content="2019-03-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ApiRequest (purecloud-guest-chat-client 3.0.0 API)";
parent.document.title="ApiRequest (purecloud-guest-chat-client 4.0.0 API)";
}
}
catch(err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_202) on Fri Feb 22 10:45:26 UTC 2019 -->
<!-- Generated by javadoc (1.8.0_202) on Fri Mar 08 10:43:59 UTC 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ApiRequestBuilder (purecloud-guest-chat-client 3.0.0 API)</title>
<meta name="date" content="2019-02-22">
<title>ApiRequestBuilder (purecloud-guest-chat-client 4.0.0 API)</title>
<meta name="date" content="2019-03-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ApiRequestBuilder (purecloud-guest-chat-client 3.0.0 API)";
parent.document.title="ApiRequestBuilder (purecloud-guest-chat-client 4.0.0 API)";
}
}
catch(err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_202) on Fri Feb 22 10:45:26 UTC 2019 -->
<!-- Generated by javadoc (1.8.0_202) on Fri Mar 08 10:43:59 UTC 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ApiResponse (purecloud-guest-chat-client 3.0.0 API)</title>
<meta name="date" content="2019-02-22">
<title>ApiResponse (purecloud-guest-chat-client 4.0.0 API)</title>
<meta name="date" content="2019-03-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ApiResponse (purecloud-guest-chat-client 3.0.0 API)";
parent.document.title="ApiResponse (purecloud-guest-chat-client 4.0.0 API)";
}
}
catch(err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_202) on Fri Feb 22 10:45:26 UTC 2019 -->
<!-- Generated by javadoc (1.8.0_202) on Fri Mar 08 10:43:59 UTC 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>AsyncApiCallback (purecloud-guest-chat-client 3.0.0 API)</title>
<meta name="date" content="2019-02-22">
<title>AsyncApiCallback (purecloud-guest-chat-client 4.0.0 API)</title>
<meta name="date" content="2019-03-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="AsyncApiCallback (purecloud-guest-chat-client 3.0.0 API)";
parent.document.title="AsyncApiCallback (purecloud-guest-chat-client 4.0.0 API)";
}
}
catch(err) {
Expand Down
Loading

0 comments on commit 31a2a2b

Please sign in to comment.