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

com.twilio.rest.video.v1.room.participant.SubscribedTrack Maven / Gradle / Ivy

/*
 * This code was generated by
 * ___ _ _ _ _ _    _ ____    ____ ____ _    ____ ____ _  _ ____ ____ ____ ___ __   __
 *  |  | | | | |    | |  | __ |  | |__| | __ | __ |___ |\ | |___ |__/ |__|  | |  | |__/
 *  |  |_|_| | |___ | |__|    |__| |  | |    |__] |___ | \| |___ |  \ |  |  | |__| |  \
 *
 * Twilio - Video
 * 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.video.v1.room.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 lombok.ToString;

import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.time.ZonedDateTime;

import java.util.Objects;



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


    public static SubscribedTrackFetcher fetcher(final String roomSid, final String participantSid, final String sid){
        return new SubscribedTrackFetcher(roomSid, participantSid, sid);
    }


    public static SubscribedTrackReader reader(final String roomSid, final String participantSid){
        return new SubscribedTrackReader(roomSid, participantSid);
    }


    /**
    * Converts a JSON String into a SubscribedTrack object using the provided ObjectMapper.
    *
    * @param json Raw JSON String
    * @param objectMapper Jackson ObjectMapper
    * @return SubscribedTrack object represented by the provided JSON
    */
    public static SubscribedTrack fromJson(final String json, final ObjectMapper objectMapper) {
        // Convert all checked exceptions to Runtime
        try {
            return objectMapper.readValue(json, SubscribedTrack.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 SubscribedTrack object using the provided
    * ObjectMapper.
    *
    * @param json Raw JSON InputStream
    * @param objectMapper Jackson ObjectMapper
    * @return SubscribedTrack object represented by the provided JSON
    */
    public static SubscribedTrack fromJson(final InputStream json, final ObjectMapper objectMapper) {
        // Convert all checked exceptions to Runtime
        try {
            return objectMapper.readValue(json, SubscribedTrack.class);
        } catch (final JsonMappingException | JsonParseException e) {
            throw new ApiException(e.getMessage(), e);
        } catch (final IOException e) {
            throw new ApiConnectionException(e.getMessage(), e);
        }
    }
    public enum Kind {
        AUDIO("audio"),
        VIDEO("video"),
        DATA("data");

        private final String value;

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

        public String toString() {
            return value;
        }

        @JsonCreator
        public static Kind forValue(final String value) {
            return Promoter.enumFromString(value, Kind.values());
        }
    }

    private final String sid;
    private final String participantSid;
    private final String publisherSid;
    private final String roomSid;
    private final String name;
    private final ZonedDateTime dateCreated;
    private final ZonedDateTime dateUpdated;
    private final Boolean enabled;
    private final SubscribedTrack.Kind kind;
    private final URI url;

    @JsonCreator
    private SubscribedTrack(
        @JsonProperty("sid")
        final String sid,

        @JsonProperty("participant_sid")
        final String participantSid,

        @JsonProperty("publisher_sid")
        final String publisherSid,

        @JsonProperty("room_sid")
        final String roomSid,

        @JsonProperty("name")
        final String name,

        @JsonProperty("date_created")
        final String dateCreated,

        @JsonProperty("date_updated")
        final String dateUpdated,

        @JsonProperty("enabled")
        final Boolean enabled,

        @JsonProperty("kind")
        final SubscribedTrack.Kind kind,

        @JsonProperty("url")
        final URI url
    ) {
        this.sid = sid;
        this.participantSid = participantSid;
        this.publisherSid = publisherSid;
        this.roomSid = roomSid;
        this.name = name;
        this.dateCreated = DateConverter.iso8601DateTimeFromString(dateCreated);
        this.dateUpdated = DateConverter.iso8601DateTimeFromString(dateUpdated);
        this.enabled = enabled;
        this.kind = kind;
        this.url = url;
    }

        public final String getSid() {
            return this.sid;
        }
        public final String getParticipantSid() {
            return this.participantSid;
        }
        public final String getPublisherSid() {
            return this.publisherSid;
        }
        public final String getRoomSid() {
            return this.roomSid;
        }
        public final String getName() {
            return this.name;
        }
        public final ZonedDateTime getDateCreated() {
            return this.dateCreated;
        }
        public final ZonedDateTime getDateUpdated() {
            return this.dateUpdated;
        }
        public final Boolean getEnabled() {
            return this.enabled;
        }
        public final SubscribedTrack.Kind getKind() {
            return this.kind;
        }
        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;
        }

        SubscribedTrack other = (SubscribedTrack) o;

        return Objects.equals(sid, other.sid) &&  Objects.equals(participantSid, other.participantSid) &&  Objects.equals(publisherSid, other.publisherSid) &&  Objects.equals(roomSid, other.roomSid) &&  Objects.equals(name, other.name) &&  Objects.equals(dateCreated, other.dateCreated) &&  Objects.equals(dateUpdated, other.dateUpdated) &&  Objects.equals(enabled, other.enabled) &&  Objects.equals(kind, other.kind) &&  Objects.equals(url, other.url)  ;
    }

    @Override
    public int hashCode() {
        return Objects.hash(sid, participantSid, publisherSid, roomSid, name, dateCreated, dateUpdated, enabled, kind, url);
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy