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

com.twilio.rest.proxy.v1.service.session.participant.MessageInteraction 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.proxy.v1.service.session.participant;

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

/**
 * PLEASE NOTE that this class contains beta products that are subject to
 * change. Use them with caution.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
@ToString
public class MessageInteraction extends Resource {
    private static final long serialVersionUID = 180423233818859L;

    public enum Type {
        MESSAGE("message"),
        VOICE("voice"),
        UNKNOWN("unknown");

        private final String value;

        private Type(final String value) {
            this.value = value;
        }

        public String toString() {
            return value;
        }

        /**
         * Generate a Type from a string.
         * @param value string value
         * @return generated Type
         */
        @JsonCreator
        public static Type forValue(final String value) {
            return Promoter.enumFromString(value, Type.values());
        }
    }

    public enum ResourceStatus {
        ACCEPTED("accepted"),
        ANSWERED("answered"),
        BUSY("busy"),
        CANCELED("canceled"),
        COMPLETED("completed"),
        DELETED("deleted"),
        DELIVERED("delivered"),
        DELIVERY_UNKNOWN("delivery-unknown"),
        FAILED("failed"),
        IN_PROGRESS("in-progress"),
        INITIATED("initiated"),
        NO_ANSWER("no-answer"),
        QUEUED("queued"),
        RECEIVED("received"),
        RECEIVING("receiving"),
        RINGING("ringing"),
        SCHEDULED("scheduled"),
        SENDING("sending"),
        SENT("sent"),
        UNDELIVERED("undelivered"),
        UNKNOWN("unknown");

        private final String value;

        private ResourceStatus(final String value) {
            this.value = value;
        }

        public String toString() {
            return value;
        }

        /**
         * Generate a ResourceStatus from a string.
         * @param value string value
         * @return generated ResourceStatus
         */
        @JsonCreator
        public static ResourceStatus forValue(final String value) {
            return Promoter.enumFromString(value, ResourceStatus.values());
        }
    }

    /**
     * Create a MessageInteractionCreator to execute create.
     *
     * @param pathServiceSid The SID of the parent Service resource
     * @param pathSessionSid The SID of the parent Session resource
     * @param pathParticipantSid The SID of the Participant resource
     * @param body Message body
     * @return MessageInteractionCreator capable of executing the create
     */
    public static MessageInteractionCreator creator(final String pathServiceSid,
                                                    final String pathSessionSid,
                                                    final String pathParticipantSid,
                                                    final String body) {
        return new MessageInteractionCreator(pathServiceSid, pathSessionSid, pathParticipantSid, body);
    }

    /**
     * Create a MessageInteractionCreator to execute create.
     *
     * @param pathServiceSid The SID of the parent Service resource
     * @param pathSessionSid The SID of the parent Session resource
     * @param pathParticipantSid The SID of the Participant resource
     * @param mediaUrl Reserved
     * @return MessageInteractionCreator capable of executing the create
     */
    public static MessageInteractionCreator creator(final String pathServiceSid,
                                                    final String pathSessionSid,
                                                    final String pathParticipantSid,
                                                    final List mediaUrl) {
        return new MessageInteractionCreator(pathServiceSid, pathSessionSid, pathParticipantSid, mediaUrl);
    }

    /**
     * Create a MessageInteractionFetcher to execute fetch.
     *
     * @param pathServiceSid The SID of the Service to fetch the resource from
     * @param pathSessionSid The SID of the parent Session
     * @param pathParticipantSid The SID of the Participant resource
     * @param pathSid The unique string that identifies the resource
     * @return MessageInteractionFetcher capable of executing the fetch
     */
    public static MessageInteractionFetcher fetcher(final String pathServiceSid,
                                                    final String pathSessionSid,
                                                    final String pathParticipantSid,
                                                    final String pathSid) {
        return new MessageInteractionFetcher(pathServiceSid, pathSessionSid, pathParticipantSid, pathSid);
    }

    /**
     * Create a MessageInteractionReader to execute read.
     *
     * @param pathServiceSid The SID of the Service to read the resource from
     * @param pathSessionSid The SID of the parent Session
     * @param pathParticipantSid The SID of the Participant resource
     * @return MessageInteractionReader capable of executing the read
     */
    public static MessageInteractionReader reader(final String pathServiceSid,
                                                  final String pathSessionSid,
                                                  final String pathParticipantSid) {
        return new MessageInteractionReader(pathServiceSid, pathSessionSid, pathParticipantSid);
    }

    /**
     * Converts a JSON String into a MessageInteraction object using the provided
     * ObjectMapper.
     *
     * @param json Raw JSON String
     * @param objectMapper Jackson ObjectMapper
     * @return MessageInteraction object represented by the provided JSON
     */
    public static MessageInteraction fromJson(final String json, final ObjectMapper objectMapper) {
        // Convert all checked exceptions to Runtime
        try {
            return objectMapper.readValue(json, MessageInteraction.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 MessageInteraction object using the
     * provided ObjectMapper.
     *
     * @param json Raw JSON InputStream
     * @param objectMapper Jackson ObjectMapper
     * @return MessageInteraction object represented by the provided JSON
     */
    public static MessageInteraction fromJson(final InputStream json, final ObjectMapper objectMapper) {
        // Convert all checked exceptions to Runtime
        try {
            return objectMapper.readValue(json, MessageInteraction.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 sessionSid;
    private final String serviceSid;
    private final String accountSid;
    private final String data;
    private final MessageInteraction.Type type;
    private final String participantSid;
    private final String inboundParticipantSid;
    private final String inboundResourceSid;
    private final MessageInteraction.ResourceStatus inboundResourceStatus;
    private final String inboundResourceType;
    private final URI inboundResourceUrl;
    private final String outboundParticipantSid;
    private final String outboundResourceSid;
    private final MessageInteraction.ResourceStatus outboundResourceStatus;
    private final String outboundResourceType;
    private final URI outboundResourceUrl;
    private final ZonedDateTime dateCreated;
    private final ZonedDateTime dateUpdated;
    private final URI url;

    @JsonCreator
    private MessageInteraction(@JsonProperty("sid")
                               final String sid,
                               @JsonProperty("session_sid")
                               final String sessionSid,
                               @JsonProperty("service_sid")
                               final String serviceSid,
                               @JsonProperty("account_sid")
                               final String accountSid,
                               @JsonProperty("data")
                               final String data,
                               @JsonProperty("type")
                               final MessageInteraction.Type type,
                               @JsonProperty("participant_sid")
                               final String participantSid,
                               @JsonProperty("inbound_participant_sid")
                               final String inboundParticipantSid,
                               @JsonProperty("inbound_resource_sid")
                               final String inboundResourceSid,
                               @JsonProperty("inbound_resource_status")
                               final MessageInteraction.ResourceStatus inboundResourceStatus,
                               @JsonProperty("inbound_resource_type")
                               final String inboundResourceType,
                               @JsonProperty("inbound_resource_url")
                               final URI inboundResourceUrl,
                               @JsonProperty("outbound_participant_sid")
                               final String outboundParticipantSid,
                               @JsonProperty("outbound_resource_sid")
                               final String outboundResourceSid,
                               @JsonProperty("outbound_resource_status")
                               final MessageInteraction.ResourceStatus outboundResourceStatus,
                               @JsonProperty("outbound_resource_type")
                               final String outboundResourceType,
                               @JsonProperty("outbound_resource_url")
                               final URI outboundResourceUrl,
                               @JsonProperty("date_created")
                               final String dateCreated,
                               @JsonProperty("date_updated")
                               final String dateUpdated,
                               @JsonProperty("url")
                               final URI url) {
        this.sid = sid;
        this.sessionSid = sessionSid;
        this.serviceSid = serviceSid;
        this.accountSid = accountSid;
        this.data = data;
        this.type = type;
        this.participantSid = participantSid;
        this.inboundParticipantSid = inboundParticipantSid;
        this.inboundResourceSid = inboundResourceSid;
        this.inboundResourceStatus = inboundResourceStatus;
        this.inboundResourceType = inboundResourceType;
        this.inboundResourceUrl = inboundResourceUrl;
        this.outboundParticipantSid = outboundParticipantSid;
        this.outboundResourceSid = outboundResourceSid;
        this.outboundResourceStatus = outboundResourceStatus;
        this.outboundResourceType = outboundResourceType;
        this.outboundResourceUrl = outboundResourceUrl;
        this.dateCreated = DateConverter.iso8601DateTimeFromString(dateCreated);
        this.dateUpdated = DateConverter.iso8601DateTimeFromString(dateUpdated);
        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 SID of the resource's parent Session.
     *
     * @return The SID of the resource's parent Session
     */
    public final String getSessionSid() {
        return this.sessionSid;
    }

    /**
     * Returns The SID of the resource's parent Service.
     *
     * @return The SID of the resource's parent Service
     */
    public final String getServiceSid() {
        return this.serviceSid;
    }

    /**
     * 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 A JSON string that includes the message body sent to the participant.
     *
     * @return A JSON string that includes the message body sent to the participant
     */
    public final String getData() {
        return this.data;
    }

    /**
     * Returns The Type of Message Interaction.
     *
     * @return The Type of Message Interaction
     */
    public final MessageInteraction.Type getType() {
        return this.type;
    }

    /**
     * Returns The SID of the Participant resource.
     *
     * @return The SID of the Participant resource
     */
    public final String getParticipantSid() {
        return this.participantSid;
    }

    /**
     * Returns Always empty for Message Interactions.
     *
     * @return Always empty for Message Interactions
     */
    public final String getInboundParticipantSid() {
        return this.inboundParticipantSid;
    }

    /**
     * Returns Always empty for Message Interactions.
     *
     * @return Always empty for Message Interactions
     */
    public final String getInboundResourceSid() {
        return this.inboundResourceSid;
    }

    /**
     * Returns Always empty for Message Interactions.
     *
     * @return Always empty for Message Interactions
     */
    public final MessageInteraction.ResourceStatus getInboundResourceStatus() {
        return this.inboundResourceStatus;
    }

    /**
     * Returns Always empty for Message Interactions.
     *
     * @return Always empty for Message Interactions
     */
    public final String getInboundResourceType() {
        return this.inboundResourceType;
    }

    /**
     * Returns Always empty for Message Interactions.
     *
     * @return Always empty for Message Interactions
     */
    public final URI getInboundResourceUrl() {
        return this.inboundResourceUrl;
    }

    /**
     * Returns The SID of the outbound Participant resource.
     *
     * @return The SID of the outbound Participant resource
     */
    public final String getOutboundParticipantSid() {
        return this.outboundParticipantSid;
    }

    /**
     * Returns The SID of the outbound Message resource.
     *
     * @return The SID of the outbound Message resource
     */
    public final String getOutboundResourceSid() {
        return this.outboundResourceSid;
    }

    /**
     * Returns The outbound resource status.
     *
     * @return The outbound resource status
     */
    public final MessageInteraction.ResourceStatus getOutboundResourceStatus() {
        return this.outboundResourceStatus;
    }

    /**
     * Returns The outbound resource type.
     *
     * @return The outbound resource type
     */
    public final String getOutboundResourceType() {
        return this.outboundResourceType;
    }

    /**
     * Returns The URL of the Twilio message resource.
     *
     * @return The URL of the Twilio message resource
     */
    public final URI getOutboundResourceUrl() {
        return this.outboundResourceUrl;
    }

    /**
     * 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 ISO 8601 date and time in GMT when the resource was last updated.
     *
     * @return The ISO 8601 date and time in GMT when the resource was last updated
     */
    public final ZonedDateTime getDateUpdated() {
        return this.dateUpdated;
    }

    /**
     * Returns The absolute URL of the MessageInteraction resource.
     *
     * @return The absolute URL of the MessageInteraction 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;
        }

        MessageInteraction other = (MessageInteraction) o;

        return Objects.equals(sid, other.sid) &&
               Objects.equals(sessionSid, other.sessionSid) &&
               Objects.equals(serviceSid, other.serviceSid) &&
               Objects.equals(accountSid, other.accountSid) &&
               Objects.equals(data, other.data) &&
               Objects.equals(type, other.type) &&
               Objects.equals(participantSid, other.participantSid) &&
               Objects.equals(inboundParticipantSid, other.inboundParticipantSid) &&
               Objects.equals(inboundResourceSid, other.inboundResourceSid) &&
               Objects.equals(inboundResourceStatus, other.inboundResourceStatus) &&
               Objects.equals(inboundResourceType, other.inboundResourceType) &&
               Objects.equals(inboundResourceUrl, other.inboundResourceUrl) &&
               Objects.equals(outboundParticipantSid, other.outboundParticipantSid) &&
               Objects.equals(outboundResourceSid, other.outboundResourceSid) &&
               Objects.equals(outboundResourceStatus, other.outboundResourceStatus) &&
               Objects.equals(outboundResourceType, other.outboundResourceType) &&
               Objects.equals(outboundResourceUrl, other.outboundResourceUrl) &&
               Objects.equals(dateCreated, other.dateCreated) &&
               Objects.equals(dateUpdated, other.dateUpdated) &&
               Objects.equals(url, other.url);
    }

    @Override
    public int hashCode() {
        return Objects.hash(sid,
                            sessionSid,
                            serviceSid,
                            accountSid,
                            data,
                            type,
                            participantSid,
                            inboundParticipantSid,
                            inboundResourceSid,
                            inboundResourceStatus,
                            inboundResourceType,
                            inboundResourceUrl,
                            outboundParticipantSid,
                            outboundResourceSid,
                            outboundResourceStatus,
                            outboundResourceType,
                            outboundResourceUrl,
                            dateCreated,
                            dateUpdated,
                            url);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy