All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twilio.rest.api.v2010.account.Address Maven / Gradle / Ivy

There is a newer version: 10.1.5
Show newest version
/**
 * This code was generated by
 * \ / _    _  _|   _  _
 *  | (_)\/(_)(_|\/| |(/_  v1.0.0
 *       /       /
 */

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.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.time.ZonedDateTime;
import java.util.Map;
import java.util.Objects;

@JsonIgnoreProperties(ignoreUnknown = true)
@ToString
public class Address extends Resource {
    private static final long serialVersionUID = 59858064655653L;

    /**
     * Create a AddressCreator to execute create.
     *
     * @param pathAccountSid The SID of the Account that will be responsible for
     *                       the new Address resource
     * @param customerName The name to associate with the new address
     * @param street The number and street address of the new address
     * @param city The city of the new address
     * @param region The state or region of the new address
     * @param postalCode The postal code of the new address
     * @param isoCountry The ISO country code of the new address
     * @return AddressCreator capable of executing the create
     */
    public static AddressCreator creator(final String pathAccountSid,
                                         final String customerName,
                                         final String street,
                                         final String city,
                                         final String region,
                                         final String postalCode,
                                         final String isoCountry) {
        return new AddressCreator(pathAccountSid, customerName, street, city, region, postalCode, isoCountry);
    }

    /**
     * Create a AddressCreator to execute create.
     *
     * @param customerName The name to associate with the new address
     * @param street The number and street address of the new address
     * @param city The city of the new address
     * @param region The state or region of the new address
     * @param postalCode The postal code of the new address
     * @param isoCountry The ISO country code of the new address
     * @return AddressCreator capable of executing the create
     */
    public static AddressCreator creator(final String customerName,
                                         final String street,
                                         final String city,
                                         final String region,
                                         final String postalCode,
                                         final String isoCountry) {
        return new AddressCreator(customerName, street, city, region, postalCode, isoCountry);
    }

    /**
     * Create a AddressDeleter to execute delete.
     *
     * @param pathAccountSid The SID of the Account that is responsible for the
     *                       resources to delete
     * @param pathSid The unique string that identifies the resource
     * @return AddressDeleter capable of executing the delete
     */
    public static AddressDeleter deleter(final String pathAccountSid,
                                         final String pathSid) {
        return new AddressDeleter(pathAccountSid, pathSid);
    }

    /**
     * Create a AddressDeleter to execute delete.
     *
     * @param pathSid The unique string that identifies the resource
     * @return AddressDeleter capable of executing the delete
     */
    public static AddressDeleter deleter(final String pathSid) {
        return new AddressDeleter(pathSid);
    }

    /**
     * Create a AddressFetcher to execute fetch.
     *
     * @param pathAccountSid The SID of the Account that is responsible for this
     *                       address
     * @param pathSid The unique string that identifies the resource
     * @return AddressFetcher capable of executing the fetch
     */
    public static AddressFetcher fetcher(final String pathAccountSid,
                                         final String pathSid) {
        return new AddressFetcher(pathAccountSid, pathSid);
    }

    /**
     * Create a AddressFetcher to execute fetch.
     *
     * @param pathSid The unique string that identifies the resource
     * @return AddressFetcher capable of executing the fetch
     */
    public static AddressFetcher fetcher(final String pathSid) {
        return new AddressFetcher(pathSid);
    }

    /**
     * Create a AddressUpdater to execute update.
     *
     * @param pathAccountSid The SID of the Account that is responsible for the
     *                       resource to update
     * @param pathSid The unique string that identifies the resource
     * @return AddressUpdater capable of executing the update
     */
    public static AddressUpdater updater(final String pathAccountSid,
                                         final String pathSid) {
        return new AddressUpdater(pathAccountSid, pathSid);
    }

    /**
     * Create a AddressUpdater to execute update.
     *
     * @param pathSid The unique string that identifies the resource
     * @return AddressUpdater capable of executing the update
     */
    public static AddressUpdater updater(final String pathSid) {
        return new AddressUpdater(pathSid);
    }

    /**
     * Create a AddressReader to execute read.
     *
     * @param pathAccountSid The SID of the Account that is responsible for this
     *                       address
     * @return AddressReader capable of executing the read
     */
    public static AddressReader reader(final String pathAccountSid) {
        return new AddressReader(pathAccountSid);
    }

    /**
     * Create a AddressReader to execute read.
     *
     * @return AddressReader capable of executing the read
     */
    public static AddressReader reader() {
        return new AddressReader();
    }

    /**
     * Converts a JSON String into a Address object using the provided ObjectMapper.
     *
     * @param json Raw JSON String
     * @param objectMapper Jackson ObjectMapper
     * @return Address object represented by the provided JSON
     */
    public static Address fromJson(final String json, final ObjectMapper objectMapper) {
        // Convert all checked exceptions to Runtime
        try {
            return objectMapper.readValue(json, Address.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 Address object using the provided
     * ObjectMapper.
     *
     * @param json Raw JSON InputStream
     * @param objectMapper Jackson ObjectMapper
     * @return Address object represented by the provided JSON
     */
    public static Address fromJson(final InputStream json, final ObjectMapper objectMapper) {
        // Convert all checked exceptions to Runtime
        try {
            return objectMapper.readValue(json, Address.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 accountSid;
    private final String city;
    private final String customerName;
    private final ZonedDateTime dateCreated;
    private final ZonedDateTime dateUpdated;
    private final String friendlyName;
    private final String isoCountry;
    private final String postalCode;
    private final String region;
    private final String sid;
    private final String street;
    private final String uri;
    private final Boolean emergencyEnabled;
    private final Boolean validated;
    private final Boolean verified;

    @JsonCreator
    private Address(@JsonProperty("account_sid")
                    final String accountSid,
                    @JsonProperty("city")
                    final String city,
                    @JsonProperty("customer_name")
                    final String customerName,
                    @JsonProperty("date_created")
                    final String dateCreated,
                    @JsonProperty("date_updated")
                    final String dateUpdated,
                    @JsonProperty("friendly_name")
                    final String friendlyName,
                    @JsonProperty("iso_country")
                    final String isoCountry,
                    @JsonProperty("postal_code")
                    final String postalCode,
                    @JsonProperty("region")
                    final String region,
                    @JsonProperty("sid")
                    final String sid,
                    @JsonProperty("street")
                    final String street,
                    @JsonProperty("uri")
                    final String uri,
                    @JsonProperty("emergency_enabled")
                    final Boolean emergencyEnabled,
                    @JsonProperty("validated")
                    final Boolean validated,
                    @JsonProperty("verified")
                    final Boolean verified) {
        this.accountSid = accountSid;
        this.city = city;
        this.customerName = customerName;
        this.dateCreated = DateConverter.rfc2822DateTimeFromString(dateCreated);
        this.dateUpdated = DateConverter.rfc2822DateTimeFromString(dateUpdated);
        this.friendlyName = friendlyName;
        this.isoCountry = isoCountry;
        this.postalCode = postalCode;
        this.region = region;
        this.sid = sid;
        this.street = street;
        this.uri = uri;
        this.emergencyEnabled = emergencyEnabled;
        this.validated = validated;
        this.verified = verified;
    }

    /**
     * Returns The SID of the Account that is responsible for the resource.
     *
     * @return The SID of the Account that is responsible for the resource
     */
    public final String getAccountSid() {
        return this.accountSid;
    }

    /**
     * Returns The city in which the address is located.
     *
     * @return The city in which the address is located
     */
    public final String getCity() {
        return this.city;
    }

    /**
     * Returns The name associated with the address.
     *
     * @return The name associated with the address
     */
    public final String getCustomerName() {
        return this.customerName;
    }

    /**
     * Returns The RFC 2822 date and time in GMT that the resource was created.
     *
     * @return The RFC 2822 date and time in GMT that the resource was created
     */
    public final ZonedDateTime getDateCreated() {
        return this.dateCreated;
    }

    /**
     * Returns The RFC 2822 date and time in GMT that the resource was last updated.
     *
     * @return The RFC 2822 date and time in GMT that the resource was last updated
     */
    public final ZonedDateTime getDateUpdated() {
        return this.dateUpdated;
    }

    /**
     * Returns The string that you assigned to describe the resource.
     *
     * @return The string that you assigned to describe the resource
     */
    public final String getFriendlyName() {
        return this.friendlyName;
    }

    /**
     * Returns The ISO country code of the address.
     *
     * @return The ISO country code of the address
     */
    public final String getIsoCountry() {
        return this.isoCountry;
    }

    /**
     * Returns The postal code of the address.
     *
     * @return The postal code of the address
     */
    public final String getPostalCode() {
        return this.postalCode;
    }

    /**
     * Returns The state or region of the address.
     *
     * @return The state or region of the address
     */
    public final String getRegion() {
        return this.region;
    }

    /**
     * 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 number and street address of the address.
     *
     * @return The number and street address of the address
     */
    public final String getStreet() {
        return this.street;
    }

    /**
     * Returns The URI of the resource, relative to `https://api.twilio.com`.
     *
     * @return The URI of the resource, relative to `https://api.twilio.com`
     */
    public final String getUri() {
        return this.uri;
    }

    /**
     * Returns Whether emergency calling has been enabled on this number.
     *
     * @return Whether emergency calling has been enabled on this number
     */
    public final Boolean getEmergencyEnabled() {
        return this.emergencyEnabled;
    }

    /**
     * Returns Whether the address has been validated to comply with local
     * regulation.
     *
     * @return Whether the address has been validated to comply with local
     *         regulation
     */
    public final Boolean getValidated() {
        return this.validated;
    }

    /**
     * Returns Whether the address has been verified to comply with regulation.
     *
     * @return Whether the address has been verified to comply with regulation
     */
    public final Boolean getVerified() {
        return this.verified;
    }

    @Override
    public boolean equals(final Object o) {
        if (this == o) {
            return true;
        }

        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        Address other = (Address) o;

        return Objects.equals(accountSid, other.accountSid) &&
               Objects.equals(city, other.city) &&
               Objects.equals(customerName, other.customerName) &&
               Objects.equals(dateCreated, other.dateCreated) &&
               Objects.equals(dateUpdated, other.dateUpdated) &&
               Objects.equals(friendlyName, other.friendlyName) &&
               Objects.equals(isoCountry, other.isoCountry) &&
               Objects.equals(postalCode, other.postalCode) &&
               Objects.equals(region, other.region) &&
               Objects.equals(sid, other.sid) &&
               Objects.equals(street, other.street) &&
               Objects.equals(uri, other.uri) &&
               Objects.equals(emergencyEnabled, other.emergencyEnabled) &&
               Objects.equals(validated, other.validated) &&
               Objects.equals(verified, other.verified);
    }

    @Override
    public int hashCode() {
        return Objects.hash(accountSid,
                            city,
                            customerName,
                            dateCreated,
                            dateUpdated,
                            friendlyName,
                            isoCountry,
                            postalCode,
                            region,
                            sid,
                            street,
                            uri,
                            emergencyEnabled,
                            validated,
                            verified);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy