com.airbyte.api.models.shared.SourceZendeskSunshineSchemasAuthMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
SDK enabling Java developers to easily integrate with the Airbyte API.
The newest version!
/*
* Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
*/
package com.airbyte.api.models.shared;
import com.airbyte.api.utils.Utils;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.core.type.TypeReference;
import java.io.InputStream;
import java.lang.Deprecated;
import java.math.BigDecimal;
import java.math.BigInteger;
public enum SourceZendeskSunshineSchemasAuthMethod {
API_TOKEN("api_token");
@JsonValue
private final String value;
private SourceZendeskSunshineSchemasAuthMethod(String value) {
this.value = value;
}
public String value() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy