jp.co.yahoo.adssearchapi.v13.model.AuditLogServiceEncoding Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ads-search-api-lib Show documentation
Show all versions of ads-search-api-lib Show documentation
Yahoo! JAPAN Ads Search Ads API library for Java
/*
* Yahoo!広告 検索広告 API リファレンス / Yahoo! JAPAN Ads Search Ads API Reference
* Yahoo!広告 検索広告 APIのWebサービスについて説明します。 Search Ads API Web Services supported in Yahoo! JAPAN Ads API.
*
* The version of the OpenAPI document: v13
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package jp.co.yahoo.adssearchapi.v13.model;
import java.util.Objects;
import java.util.Arrays;
import io.swagger.annotations.ApiModel;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* <div lang=\"ja\">AuditLogServiceEncodingは、操作履歴ファイルのエンコーディング形式(文字コード)を表します。<br> このフィールドは、省略可能となります。その際、デフォルト値はSJISとなります。</div> <div lang=\"en\">AuditLogServiceEncoding describes the encoding type (character encoding) for Operation History file.<br> This field is optional. The default value will be SJIS.</div> <dl class=term> <dt class=\"term__item\">SJIS</dt> <dd class=\"term__desc\"><span lang=\"ja\">SJIS形式です。</span><span lang=\"en\">SJIS.</span></dd> <dt class=\"term__item\">UTF8</dt> <dd class=\"term__desc\"><span lang=\"ja\">UTF8形式です。</span><span lang=\"en\">UTF8.</span></dd> <dt class=\"term__item\">UNKNOWN</dt> <dd class=\"term__desc\"><span lang=\"ja\">未知の値です。</span><span lang=\"en\">Unknown value.</span></dd> </dl>
*/
public enum AuditLogServiceEncoding {
SJIS("SJIS"),
UTF8("UTF8"),
UNKNOWN("UNKNOWN");
private String value;
AuditLogServiceEncoding(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static AuditLogServiceEncoding fromValue(String value) {
for (AuditLogServiceEncoding b : AuditLogServiceEncoding.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null;
}
}