com.twilio.rest.api.v2010.account.AuthorizedConnectApp 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
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Api
* This is the public Twilio REST API.
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.twilio.rest.api.v2010.account;
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.converter.Promoter;
import com.twilio.exception.ApiConnectionException;
import com.twilio.exception.ApiException;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.time.ZonedDateTime;
import java.util.List;
import java.util.Objects;
import lombok.ToString;
import lombok.ToString;
@JsonIgnoreProperties(ignoreUnknown = true)
@ToString
public class AuthorizedConnectApp extends Resource {
private static final long serialVersionUID = 15094155294983L;
public static AuthorizedConnectAppFetcher fetcher(
final String pathConnectAppSid
) {
return new AuthorizedConnectAppFetcher(pathConnectAppSid);
}
public static AuthorizedConnectAppFetcher fetcher(
final String pathAccountSid,
final String pathConnectAppSid
) {
return new AuthorizedConnectAppFetcher(
pathAccountSid,
pathConnectAppSid
);
}
public static AuthorizedConnectAppReader reader() {
return new AuthorizedConnectAppReader();
}
public static AuthorizedConnectAppReader reader(
final String pathAccountSid
) {
return new AuthorizedConnectAppReader(pathAccountSid);
}
/**
* Converts a JSON String into a AuthorizedConnectApp object using the provided ObjectMapper.
*
* @param json Raw JSON String
* @param objectMapper Jackson ObjectMapper
* @return AuthorizedConnectApp object represented by the provided JSON
*/
public static AuthorizedConnectApp fromJson(
final String json,
final ObjectMapper objectMapper
) {
// Convert all checked exceptions to Runtime
try {
return objectMapper.readValue(json, AuthorizedConnectApp.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 AuthorizedConnectApp object using the provided
* ObjectMapper.
*
* @param json Raw JSON InputStream
* @param objectMapper Jackson ObjectMapper
* @return AuthorizedConnectApp object represented by the provided JSON
*/
public static AuthorizedConnectApp fromJson(
final InputStream json,
final ObjectMapper objectMapper
) {
// Convert all checked exceptions to Runtime
try {
return objectMapper.readValue(json, AuthorizedConnectApp.class);
} catch (final JsonMappingException | JsonParseException e) {
throw new ApiException(e.getMessage(), e);
} catch (final IOException e) {
throw new ApiConnectionException(e.getMessage(), e);
}
}
public enum Permission {
GET_ALL("get-all"),
POST_ALL("post-all");
private final String value;
private Permission(final String value) {
this.value = value;
}
public String toString() {
return value;
}
@JsonCreator
public static Permission forValue(final String value) {
return Promoter.enumFromString(value, Permission.values());
}
}
private final String accountSid;
private final String connectAppCompanyName;
private final String connectAppDescription;
private final String connectAppFriendlyName;
private final URI connectAppHomepageUrl;
private final String connectAppSid;
private final ZonedDateTime dateCreated;
private final ZonedDateTime dateUpdated;
private final List permissions;
private final String uri;
@JsonCreator
private AuthorizedConnectApp(
@JsonProperty("account_sid") final String accountSid,
@JsonProperty(
"connect_app_company_name"
) final String connectAppCompanyName,
@JsonProperty(
"connect_app_description"
) final String connectAppDescription,
@JsonProperty(
"connect_app_friendly_name"
) final String connectAppFriendlyName,
@JsonProperty(
"connect_app_homepage_url"
) final URI connectAppHomepageUrl,
@JsonProperty("connect_app_sid") final String connectAppSid,
@JsonProperty("date_created") final String dateCreated,
@JsonProperty("date_updated") final String dateUpdated,
@JsonProperty("permissions") final List<
AuthorizedConnectApp.Permission
> permissions,
@JsonProperty("uri") final String uri
) {
this.accountSid = accountSid;
this.connectAppCompanyName = connectAppCompanyName;
this.connectAppDescription = connectAppDescription;
this.connectAppFriendlyName = connectAppFriendlyName;
this.connectAppHomepageUrl = connectAppHomepageUrl;
this.connectAppSid = connectAppSid;
this.dateCreated = DateConverter.rfc2822DateTimeFromString(dateCreated);
this.dateUpdated = DateConverter.rfc2822DateTimeFromString(dateUpdated);
this.permissions = permissions;
this.uri = uri;
}
public final String getAccountSid() {
return this.accountSid;
}
public final String getConnectAppCompanyName() {
return this.connectAppCompanyName;
}
public final String getConnectAppDescription() {
return this.connectAppDescription;
}
public final String getConnectAppFriendlyName() {
return this.connectAppFriendlyName;
}
public final URI getConnectAppHomepageUrl() {
return this.connectAppHomepageUrl;
}
public final String getConnectAppSid() {
return this.connectAppSid;
}
public final ZonedDateTime getDateCreated() {
return this.dateCreated;
}
public final ZonedDateTime getDateUpdated() {
return this.dateUpdated;
}
public final List getPermissions() {
return this.permissions;
}
public final String getUri() {
return this.uri;
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AuthorizedConnectApp other = (AuthorizedConnectApp) o;
return (
Objects.equals(accountSid, other.accountSid) &&
Objects.equals(
connectAppCompanyName,
other.connectAppCompanyName
) &&
Objects.equals(
connectAppDescription,
other.connectAppDescription
) &&
Objects.equals(
connectAppFriendlyName,
other.connectAppFriendlyName
) &&
Objects.equals(
connectAppHomepageUrl,
other.connectAppHomepageUrl
) &&
Objects.equals(connectAppSid, other.connectAppSid) &&
Objects.equals(dateCreated, other.dateCreated) &&
Objects.equals(dateUpdated, other.dateUpdated) &&
Objects.equals(permissions, other.permissions) &&
Objects.equals(uri, other.uri)
);
}
@Override
public int hashCode() {
return Objects.hash(
accountSid,
connectAppCompanyName,
connectAppDescription,
connectAppFriendlyName,
connectAppHomepageUrl,
connectAppSid,
dateCreated,
dateUpdated,
permissions,
uri
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy