com.squareup.connect.models.TenderCardDetailsEntryMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connect Show documentation
Show all versions of connect Show documentation
Java client library for the Square Connect API
/*
* Square Connect API
* Client library for accessing the Square Connect APIs
*
* OpenAPI spec version: 2.0
* Contact: [email protected]
*
* 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.squareup.connect.models;
import java.util.Objects;
import io.swagger.annotations.ApiModel;
import com.fasterxml.jackson.annotation.JsonCreator;
/**
* Indicates the method used to enter the card's details.
*/
public enum TenderCardDetailsEntryMethod {
SWIPED("SWIPED"),
KEYED("KEYED"),
EMV("EMV"),
ON_FILE("ON_FILE"),
CONTACTLESS("CONTACTLESS");
private String value;
TenderCardDetailsEntryMethod(String value) {
this.value = value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static TenderCardDetailsEntryMethod fromValue(String text) {
for (TenderCardDetailsEntryMethod b : TenderCardDetailsEntryMethod.values()) {
if (String.valueOf(b.value).equals(text)) {
return b;
}
}
return null;
}
}