com.telnyx.sdk.model.CreateVerificationRequest 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 com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import com.telnyx.sdk.model.VerificationType;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.UUID;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.telnyx.sdk.JSON;
/**
* The request body when creating a verification.
*/
@ApiModel(description = "The request body when creating a verification.")
@JsonPropertyOrder({
CreateVerificationRequest.JSON_PROPERTY_PHONE_NUMBER,
CreateVerificationRequest.JSON_PROPERTY_VERIFY_PROFILE_ID,
CreateVerificationRequest.JSON_PROPERTY_TYPE,
CreateVerificationRequest.JSON_PROPERTY_TIMEOUT_SECS
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class CreateVerificationRequest {
public static final String JSON_PROPERTY_PHONE_NUMBER = "phone_number";
private String phoneNumber;
public static final String JSON_PROPERTY_VERIFY_PROFILE_ID = "verify_profile_id";
private UUID verifyProfileId;
public static final String JSON_PROPERTY_TYPE = "type";
private VerificationType type;
public static final String JSON_PROPERTY_TIMEOUT_SECS = "timeout_secs";
private Integer timeoutSecs;
public CreateVerificationRequest phoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
return this;
}
/**
* +E164 formatted phone number.
* @return phoneNumber
**/
@ApiModelProperty(example = "+13035551234", required = true, value = "+E164 formatted phone number.")
@JsonProperty(JSON_PROPERTY_PHONE_NUMBER)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getPhoneNumber() {
return phoneNumber;
}
public void setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
}
public CreateVerificationRequest verifyProfileId(UUID verifyProfileId) {
this.verifyProfileId = verifyProfileId;
return this;
}
/**
* The identifier of the associated Verify profile.
* @return verifyProfileId
**/
@ApiModelProperty(example = "12ade33a-21c0-473b-b055-b3c836e1c292", required = true, value = "The identifier of the associated Verify profile.")
@JsonProperty(JSON_PROPERTY_VERIFY_PROFILE_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public UUID getVerifyProfileId() {
return verifyProfileId;
}
public void setVerifyProfileId(UUID verifyProfileId) {
this.verifyProfileId = verifyProfileId;
}
public CreateVerificationRequest type(VerificationType type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public VerificationType getType() {
return type;
}
public void setType(VerificationType type) {
this.type = type;
}
public CreateVerificationRequest timeoutSecs(Integer timeoutSecs) {
this.timeoutSecs = timeoutSecs;
return this;
}
/**
* This is the number of seconds before the code of the request is expired. Once this request has expired, the code will no longer verify the user. Note: this will override the `default_timeout_secs` on the Verify profile.
* @return timeoutSecs
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "300", value = "This is the number of seconds before the code of the request is expired. Once this request has expired, the code will no longer verify the user. Note: this will override the `default_timeout_secs` on the Verify profile.")
@JsonProperty(JSON_PROPERTY_TIMEOUT_SECS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getTimeoutSecs() {
return timeoutSecs;
}
public void setTimeoutSecs(Integer timeoutSecs) {
this.timeoutSecs = timeoutSecs;
}
/**
* Return true if this CreateVerificationRequest object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreateVerificationRequest createVerificationRequest = (CreateVerificationRequest) o;
return Objects.equals(this.phoneNumber, createVerificationRequest.phoneNumber) &&
Objects.equals(this.verifyProfileId, createVerificationRequest.verifyProfileId) &&
Objects.equals(this.type, createVerificationRequest.type) &&
Objects.equals(this.timeoutSecs, createVerificationRequest.timeoutSecs);
}
@Override
public int hashCode() {
return Objects.hash(phoneNumber, verifyProfileId, type, timeoutSecs);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreateVerificationRequest {\n");
sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n");
sb.append(" verifyProfileId: ").append(toIndentedString(verifyProfileId)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" timeoutSecs: ").append(toIndentedString(timeoutSecs)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}