com.volcengine.cdn.model.RewriteM3u8RuleForUpdateCdnConfigInput Maven / Gradle / Ivy
/*
* cdn
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: common-version
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.volcengine.cdn.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* RewriteM3u8RuleForUpdateCdnConfigInput
*/
public class RewriteM3u8RuleForUpdateCdnConfigInput {
@SerializedName("DeleteParam")
private Boolean deleteParam = null;
@SerializedName("KeepM3u8Param")
private Boolean keepM3u8Param = null;
@SerializedName("TransferEncoding")
private Boolean transferEncoding = null;
public RewriteM3u8RuleForUpdateCdnConfigInput deleteParam(Boolean deleteParam) {
this.deleteParam = deleteParam;
return this;
}
/**
* Get deleteParam
* @return deleteParam
**/
@Schema(description = "")
public Boolean isDeleteParam() {
return deleteParam;
}
public void setDeleteParam(Boolean deleteParam) {
this.deleteParam = deleteParam;
}
public RewriteM3u8RuleForUpdateCdnConfigInput keepM3u8Param(Boolean keepM3u8Param) {
this.keepM3u8Param = keepM3u8Param;
return this;
}
/**
* Get keepM3u8Param
* @return keepM3u8Param
**/
@Schema(description = "")
public Boolean isKeepM3u8Param() {
return keepM3u8Param;
}
public void setKeepM3u8Param(Boolean keepM3u8Param) {
this.keepM3u8Param = keepM3u8Param;
}
public RewriteM3u8RuleForUpdateCdnConfigInput transferEncoding(Boolean transferEncoding) {
this.transferEncoding = transferEncoding;
return this;
}
/**
* Get transferEncoding
* @return transferEncoding
**/
@Schema(description = "")
public Boolean isTransferEncoding() {
return transferEncoding;
}
public void setTransferEncoding(Boolean transferEncoding) {
this.transferEncoding = transferEncoding;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RewriteM3u8RuleForUpdateCdnConfigInput rewriteM3u8RuleForUpdateCdnConfigInput = (RewriteM3u8RuleForUpdateCdnConfigInput) o;
return Objects.equals(this.deleteParam, rewriteM3u8RuleForUpdateCdnConfigInput.deleteParam) &&
Objects.equals(this.keepM3u8Param, rewriteM3u8RuleForUpdateCdnConfigInput.keepM3u8Param) &&
Objects.equals(this.transferEncoding, rewriteM3u8RuleForUpdateCdnConfigInput.transferEncoding);
}
@Override
public int hashCode() {
return Objects.hash(deleteParam, keepM3u8Param, transferEncoding);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RewriteM3u8RuleForUpdateCdnConfigInput {\n");
sb.append(" deleteParam: ").append(toIndentedString(deleteParam)).append("\n");
sb.append(" keepM3u8Param: ").append(toIndentedString(keepM3u8Param)).append("\n");
sb.append(" transferEncoding: ").append(toIndentedString(transferEncoding)).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