-
Notifications
You must be signed in to change notification settings - Fork 433
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Librarian] Regenerated @ 7a7839b47231760a343c1db31f805001d48237b2
- Loading branch information
Showing
26 changed files
with
3,508 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
357 changes: 357 additions & 0 deletions
357
src/main/java/com/twilio/rest/chat/v2/service/Binding.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,357 @@ | ||
/** | ||
* This code was generated by | ||
* \ / _ _ _| _ _ | ||
* | (_)\/(_)(_|\/| |(/_ v1.0.0 | ||
* / / | ||
*/ | ||
|
||
package com.twilio.rest.chat.v2.service; | ||
|
||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.core.JsonParseException; | ||
import com.fasterxml.jackson.databind.JsonMappingException; | ||
import com.fasterxml.jackson.databind.ObjectMapper; | ||
import com.google.common.base.MoreObjects; | ||
import com.twilio.base.Resource; | ||
import com.twilio.converter.DateConverter; | ||
import com.twilio.converter.Promoter; | ||
import com.twilio.exception.ApiConnectionException; | ||
import com.twilio.exception.ApiException; | ||
import com.twilio.exception.RestException; | ||
import com.twilio.http.HttpMethod; | ||
import com.twilio.http.Request; | ||
import com.twilio.http.Response; | ||
import com.twilio.http.TwilioRestClient; | ||
import com.twilio.rest.Domains; | ||
import org.joda.time.DateTime; | ||
|
||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.net.URI; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.Objects; | ||
|
||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
public class Binding extends Resource { | ||
private static final long serialVersionUID = 272307863470500L; | ||
|
||
public enum BindingType { | ||
GCM("gcm"), | ||
APN("apn"), | ||
FCM("fcm"); | ||
|
||
private final String value; | ||
|
||
private BindingType(final String value) { | ||
this.value = value; | ||
} | ||
|
||
public String toString() { | ||
return value; | ||
} | ||
|
||
/** | ||
* Generate a BindingType from a string. | ||
* @param value string value | ||
* @return generated BindingType | ||
*/ | ||
@JsonCreator | ||
public static BindingType forValue(final String value) { | ||
return Promoter.enumFromString(value, BindingType.values()); | ||
} | ||
} | ||
|
||
/** | ||
* Create a BindingReader to execute read. | ||
* | ||
* @param pathServiceSid The service_sid | ||
* @return BindingReader capable of executing the read | ||
*/ | ||
public static BindingReader reader(final String pathServiceSid) { | ||
return new BindingReader(pathServiceSid); | ||
} | ||
|
||
/** | ||
* Create a BindingFetcher to execute fetch. | ||
* | ||
* @param pathServiceSid The service_sid | ||
* @param pathSid The sid | ||
* @return BindingFetcher capable of executing the fetch | ||
*/ | ||
public static BindingFetcher fetcher(final String pathServiceSid, | ||
final String pathSid) { | ||
return new BindingFetcher(pathServiceSid, pathSid); | ||
} | ||
|
||
/** | ||
* Create a BindingDeleter to execute delete. | ||
* | ||
* @param pathServiceSid The service_sid | ||
* @param pathSid The sid | ||
* @return BindingDeleter capable of executing the delete | ||
*/ | ||
public static BindingDeleter deleter(final String pathServiceSid, | ||
final String pathSid) { | ||
return new BindingDeleter(pathServiceSid, pathSid); | ||
} | ||
|
||
/** | ||
* Converts a JSON String into a Binding object using the provided ObjectMapper. | ||
* | ||
* @param json Raw JSON String | ||
* @param objectMapper Jackson ObjectMapper | ||
* @return Binding object represented by the provided JSON | ||
*/ | ||
public static Binding fromJson(final String json, final ObjectMapper objectMapper) { | ||
// Convert all checked exceptions to Runtime | ||
try { | ||
return objectMapper.readValue(json, Binding.class); | ||
} catch (final JsonMappingException | JsonParseException e) { | ||
throw new ApiException(e.getMessage(), e); | ||
} catch (final IOException e) { | ||
throw new ApiConnectionException(e.getMessage(), e); | ||
} | ||
} | ||
|
||
/** | ||
* Converts a JSON InputStream into a Binding object using the provided | ||
* ObjectMapper. | ||
* | ||
* @param json Raw JSON InputStream | ||
* @param objectMapper Jackson ObjectMapper | ||
* @return Binding object represented by the provided JSON | ||
*/ | ||
public static Binding fromJson(final InputStream json, final ObjectMapper objectMapper) { | ||
// Convert all checked exceptions to Runtime | ||
try { | ||
return objectMapper.readValue(json, Binding.class); | ||
} catch (final JsonMappingException | JsonParseException e) { | ||
throw new ApiException(e.getMessage(), e); | ||
} catch (final IOException e) { | ||
throw new ApiConnectionException(e.getMessage(), e); | ||
} | ||
} | ||
|
||
private final String sid; | ||
private final String accountSid; | ||
private final String serviceSid; | ||
private final DateTime dateCreated; | ||
private final DateTime dateUpdated; | ||
private final String endpoint; | ||
private final String identity; | ||
private final String credentialSid; | ||
private final Binding.BindingType bindingType; | ||
private final List<String> messageTypes; | ||
private final URI url; | ||
private final Map<String, String> links; | ||
|
||
@JsonCreator | ||
private Binding(@JsonProperty("sid") | ||
final String sid, | ||
@JsonProperty("account_sid") | ||
final String accountSid, | ||
@JsonProperty("service_sid") | ||
final String serviceSid, | ||
@JsonProperty("date_created") | ||
final String dateCreated, | ||
@JsonProperty("date_updated") | ||
final String dateUpdated, | ||
@JsonProperty("endpoint") | ||
final String endpoint, | ||
@JsonProperty("identity") | ||
final String identity, | ||
@JsonProperty("credential_sid") | ||
final String credentialSid, | ||
@JsonProperty("binding_type") | ||
final Binding.BindingType bindingType, | ||
@JsonProperty("message_types") | ||
final List<String> messageTypes, | ||
@JsonProperty("url") | ||
final URI url, | ||
@JsonProperty("links") | ||
final Map<String, String> links) { | ||
this.sid = sid; | ||
this.accountSid = accountSid; | ||
this.serviceSid = serviceSid; | ||
this.dateCreated = DateConverter.iso8601DateTimeFromString(dateCreated); | ||
this.dateUpdated = DateConverter.iso8601DateTimeFromString(dateUpdated); | ||
this.endpoint = endpoint; | ||
this.identity = identity; | ||
this.credentialSid = credentialSid; | ||
this.bindingType = bindingType; | ||
this.messageTypes = messageTypes; | ||
this.url = url; | ||
this.links = links; | ||
} | ||
|
||
/** | ||
* Returns The The sid. | ||
* | ||
* @return The sid | ||
*/ | ||
public final String getSid() { | ||
return this.sid; | ||
} | ||
|
||
/** | ||
* Returns The The account_sid. | ||
* | ||
* @return The account_sid | ||
*/ | ||
public final String getAccountSid() { | ||
return this.accountSid; | ||
} | ||
|
||
/** | ||
* Returns The The service_sid. | ||
* | ||
* @return The service_sid | ||
*/ | ||
public final String getServiceSid() { | ||
return this.serviceSid; | ||
} | ||
|
||
/** | ||
* Returns The The date_created. | ||
* | ||
* @return The date_created | ||
*/ | ||
public final DateTime getDateCreated() { | ||
return this.dateCreated; | ||
} | ||
|
||
/** | ||
* Returns The The date_updated. | ||
* | ||
* @return The date_updated | ||
*/ | ||
public final DateTime getDateUpdated() { | ||
return this.dateUpdated; | ||
} | ||
|
||
/** | ||
* Returns The The endpoint. | ||
* | ||
* @return The endpoint | ||
*/ | ||
public final String getEndpoint() { | ||
return this.endpoint; | ||
} | ||
|
||
/** | ||
* Returns The The identity. | ||
* | ||
* @return The identity | ||
*/ | ||
public final String getIdentity() { | ||
return this.identity; | ||
} | ||
|
||
/** | ||
* Returns The The credential_sid. | ||
* | ||
* @return The credential_sid | ||
*/ | ||
public final String getCredentialSid() { | ||
return this.credentialSid; | ||
} | ||
|
||
/** | ||
* Returns The The binding_type. | ||
* | ||
* @return The binding_type | ||
*/ | ||
public final Binding.BindingType getBindingType() { | ||
return this.bindingType; | ||
} | ||
|
||
/** | ||
* Returns The The message_types. | ||
* | ||
* @return The message_types | ||
*/ | ||
public final List<String> getMessageTypes() { | ||
return this.messageTypes; | ||
} | ||
|
||
/** | ||
* Returns The The url. | ||
* | ||
* @return The url | ||
*/ | ||
public final URI getUrl() { | ||
return this.url; | ||
} | ||
|
||
/** | ||
* Returns The The links. | ||
* | ||
* @return The links | ||
*/ | ||
public final Map<String, String> getLinks() { | ||
return this.links; | ||
} | ||
|
||
@Override | ||
public boolean equals(final Object o) { | ||
if (this == o) { | ||
return true; | ||
} | ||
|
||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
|
||
Binding other = (Binding) o; | ||
|
||
return Objects.equals(sid, other.sid) && | ||
Objects.equals(accountSid, other.accountSid) && | ||
Objects.equals(serviceSid, other.serviceSid) && | ||
Objects.equals(dateCreated, other.dateCreated) && | ||
Objects.equals(dateUpdated, other.dateUpdated) && | ||
Objects.equals(endpoint, other.endpoint) && | ||
Objects.equals(identity, other.identity) && | ||
Objects.equals(credentialSid, other.credentialSid) && | ||
Objects.equals(bindingType, other.bindingType) && | ||
Objects.equals(messageTypes, other.messageTypes) && | ||
Objects.equals(url, other.url) && | ||
Objects.equals(links, other.links); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(sid, | ||
accountSid, | ||
serviceSid, | ||
dateCreated, | ||
dateUpdated, | ||
endpoint, | ||
identity, | ||
credentialSid, | ||
bindingType, | ||
messageTypes, | ||
url, | ||
links); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return MoreObjects.toStringHelper(this) | ||
.add("sid", sid) | ||
.add("accountSid", accountSid) | ||
.add("serviceSid", serviceSid) | ||
.add("dateCreated", dateCreated) | ||
.add("dateUpdated", dateUpdated) | ||
.add("endpoint", endpoint) | ||
.add("identity", identity) | ||
.add("credentialSid", credentialSid) | ||
.add("bindingType", bindingType) | ||
.add("messageTypes", messageTypes) | ||
.add("url", url) | ||
.add("links", links) | ||
.toString(); | ||
} | ||
} |
Oops, something went wrong.