com.telnyx.sdk.model.FqdnConnectionTransportProtocol Maven / Gradle / Ivy
/*
* Telnyx API
* SIP trunking, SMS, MMS, Call Control and Telephony Data Services.
*
* The version of the OpenAPI document: 2.0.0
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.telnyx.sdk.model;
import java.util.Objects;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
import io.swagger.annotations.ApiModel;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.telnyx.sdk.JSON;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* One of UDP, TLS, or TCP. Applies only to connections with IP authentication or FQDN authentication.
*/
public enum FqdnConnectionTransportProtocol {
UDP("UDP"),
TCP("TCP"),
TLS("TLS");
private String value;
FqdnConnectionTransportProtocol(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static FqdnConnectionTransportProtocol fromValue(String value) {
for (FqdnConnectionTransportProtocol b : FqdnConnectionTransportProtocol.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
}