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

com.bitmovin.api.sdk.model.RtmpIngestPoint Maven / Gradle / Ivy

There is a newer version: 1.205.0
Show newest version
package com.bitmovin.api.sdk.model;

import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;

/**
 * RtmpIngestPoint
 */

public class RtmpIngestPoint {
  @JsonProperty("applicationName")
  private String applicationName;

  @JsonProperty("streamKey")
  private String streamKey;


  /**
   * The name of the application where the ingest is streamed to. This has to be unique for each ingest point (required)
   * @return applicationName
   */
  public String getApplicationName() {
    return applicationName;
  }

  /**
   * The name of the application where the ingest is streamed to. This has to be unique for each ingest point (required)
   *
   * @param applicationName
   *        The name of the application where the ingest is streamed to. This has to be unique for each ingest point (required)
   */
  public void setApplicationName(String applicationName) {
    this.applicationName = applicationName;
  }


  /**
   * The stream key for the backup input (required)
   * @return streamKey
   */
  public String getStreamKey() {
    return streamKey;
  }

  /**
   * The stream key for the backup input (required)
   *
   * @param streamKey
   *        The stream key for the backup input (required)
   */
  public void setStreamKey(String streamKey) {
    this.streamKey = streamKey;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    RtmpIngestPoint rtmpIngestPoint = (RtmpIngestPoint) o;
    return Objects.equals(this.applicationName, rtmpIngestPoint.applicationName) &&
        Objects.equals(this.streamKey, rtmpIngestPoint.streamKey);
  }

  @Override
  public int hashCode() {
    return Objects.hash(applicationName, streamKey);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class RtmpIngestPoint {\n");
    
    sb.append("    applicationName: ").append(toIndentedString(applicationName)).append("\n");
    sb.append("    streamKey: ").append(toIndentedString(streamKey)).append("\n");
    sb.append("}");
    return sb.toString();
  }

  /**
   * Convert the given object to string with each line indented by 4 spaces
   * (except the first line).
   */
  private String toIndentedString(java.lang.Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy