com.twilio.rest.trusthub.v1.customerprofiles.CustomerProfilesEntityAssignments Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio Show documentation
Show all versions of twilio Show documentation
Twilio Java Helper Library
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
package com.twilio.rest.trusthub.v1.customerprofiles;
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.twilio.base.Resource;
import com.twilio.converter.DateConverter;
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 lombok.ToString;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.time.ZonedDateTime;
import java.util.Map;
import java.util.Objects;
@JsonIgnoreProperties(ignoreUnknown = true)
@ToString
public class CustomerProfilesEntityAssignments extends Resource {
private static final long serialVersionUID = 187073791888646L;
/**
* Create a CustomerProfilesEntityAssignmentsCreator to execute create.
*
* @param pathCustomerProfileSid The unique string that identifies the resource.
* @param objectSid The sid of an object bag
* @return CustomerProfilesEntityAssignmentsCreator capable of executing the
* create
*/
public static CustomerProfilesEntityAssignmentsCreator creator(final String pathCustomerProfileSid,
final String objectSid) {
return new CustomerProfilesEntityAssignmentsCreator(pathCustomerProfileSid, objectSid);
}
/**
* Create a CustomerProfilesEntityAssignmentsReader to execute read.
*
* @param pathCustomerProfileSid The unique string that identifies the resource.
* @return CustomerProfilesEntityAssignmentsReader capable of executing the read
*/
public static CustomerProfilesEntityAssignmentsReader reader(final String pathCustomerProfileSid) {
return new CustomerProfilesEntityAssignmentsReader(pathCustomerProfileSid);
}
/**
* Create a CustomerProfilesEntityAssignmentsFetcher to execute fetch.
*
* @param pathCustomerProfileSid The unique string that identifies the resource.
* @param pathSid The unique string that identifies the resource
* @return CustomerProfilesEntityAssignmentsFetcher capable of executing the
* fetch
*/
public static CustomerProfilesEntityAssignmentsFetcher fetcher(final String pathCustomerProfileSid,
final String pathSid) {
return new CustomerProfilesEntityAssignmentsFetcher(pathCustomerProfileSid, pathSid);
}
/**
* Create a CustomerProfilesEntityAssignmentsDeleter to execute delete.
*
* @param pathCustomerProfileSid The unique string that identifies the resource.
* @param pathSid The unique string that identifies the resource
* @return CustomerProfilesEntityAssignmentsDeleter capable of executing the
* delete
*/
public static CustomerProfilesEntityAssignmentsDeleter deleter(final String pathCustomerProfileSid,
final String pathSid) {
return new CustomerProfilesEntityAssignmentsDeleter(pathCustomerProfileSid, pathSid);
}
/**
* Converts a JSON String into a CustomerProfilesEntityAssignments object using
* the provided ObjectMapper.
*
* @param json Raw JSON String
* @param objectMapper Jackson ObjectMapper
* @return CustomerProfilesEntityAssignments object represented by the provided
* JSON
*/
public static CustomerProfilesEntityAssignments fromJson(final String json, final ObjectMapper objectMapper) {
// Convert all checked exceptions to Runtime
try {
return objectMapper.readValue(json, CustomerProfilesEntityAssignments.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 CustomerProfilesEntityAssignments object
* using the provided ObjectMapper.
*
* @param json Raw JSON InputStream
* @param objectMapper Jackson ObjectMapper
* @return CustomerProfilesEntityAssignments object represented by the provided
* JSON
*/
public static CustomerProfilesEntityAssignments fromJson(final InputStream json, final ObjectMapper objectMapper) {
// Convert all checked exceptions to Runtime
try {
return objectMapper.readValue(json, CustomerProfilesEntityAssignments.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 customerProfileSid;
private final String accountSid;
private final String objectSid;
private final ZonedDateTime dateCreated;
private final URI url;
@JsonCreator
private CustomerProfilesEntityAssignments(@JsonProperty("sid")
final String sid,
@JsonProperty("customer_profile_sid")
final String customerProfileSid,
@JsonProperty("account_sid")
final String accountSid,
@JsonProperty("object_sid")
final String objectSid,
@JsonProperty("date_created")
final String dateCreated,
@JsonProperty("url")
final URI url) {
this.sid = sid;
this.customerProfileSid = customerProfileSid;
this.accountSid = accountSid;
this.objectSid = objectSid;
this.dateCreated = DateConverter.iso8601DateTimeFromString(dateCreated);
this.url = url;
}
/**
* Returns The unique string that identifies the resource.
*
* @return The unique string that identifies the resource
*/
public final String getSid() {
return this.sid;
}
/**
* Returns The unique string that identifies the CustomerProfile resource..
*
* @return The unique string that identifies the CustomerProfile resource.
*/
public final String getCustomerProfileSid() {
return this.customerProfileSid;
}
/**
* Returns The SID of the Account that created the resource.
*
* @return The SID of the Account that created the resource
*/
public final String getAccountSid() {
return this.accountSid;
}
/**
* Returns The sid of an object bag.
*
* @return The sid of an object bag
*/
public final String getObjectSid() {
return this.objectSid;
}
/**
* Returns The ISO 8601 date and time in GMT when the resource was created.
*
* @return The ISO 8601 date and time in GMT when the resource was created
*/
public final ZonedDateTime getDateCreated() {
return this.dateCreated;
}
/**
* Returns The absolute URL of the Identity resource.
*
* @return The absolute URL of the Identity resource
*/
public final URI getUrl() {
return this.url;
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CustomerProfilesEntityAssignments other = (CustomerProfilesEntityAssignments) o;
return Objects.equals(sid, other.sid) &&
Objects.equals(customerProfileSid, other.customerProfileSid) &&
Objects.equals(accountSid, other.accountSid) &&
Objects.equals(objectSid, other.objectSid) &&
Objects.equals(dateCreated, other.dateCreated) &&
Objects.equals(url, other.url);
}
@Override
public int hashCode() {
return Objects.hash(sid,
customerProfileSid,
accountSid,
objectSid,
dateCreated,
url);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy