com.squareup.square.models.CreateDeviceCodeRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of square Show documentation
Show all versions of square Show documentation
Java client library for the Square API
package com.squareup.square.models;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonGetter;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/**
* This is a model class for CreateDeviceCodeRequest type.
*/
public class CreateDeviceCodeRequest {
private final String idempotencyKey;
private final DeviceCode deviceCode;
/**
* Initialization constructor.
* @param idempotencyKey String value for idempotencyKey.
* @param deviceCode DeviceCode value for deviceCode.
*/
@JsonCreator
public CreateDeviceCodeRequest(
@JsonProperty("idempotency_key") String idempotencyKey,
@JsonProperty("device_code") DeviceCode deviceCode) {
this.idempotencyKey = idempotencyKey;
this.deviceCode = deviceCode;
}
/**
* Getter for IdempotencyKey.
* A unique string that identifies this CreateDeviceCode request. Keys can be any valid string
* but must be unique for every CreateDeviceCode request. See [Idempotency
* keys](https://developer.squareup.com/docs/basics/api101/idempotency) for more information.
* @return Returns the String
*/
@JsonGetter("idempotency_key")
public String getIdempotencyKey() {
return idempotencyKey;
}
/**
* Getter for DeviceCode.
* @return Returns the DeviceCode
*/
@JsonGetter("device_code")
public DeviceCode getDeviceCode() {
return deviceCode;
}
@Override
public int hashCode() {
return Objects.hash(idempotencyKey, deviceCode);
}
@Override
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof CreateDeviceCodeRequest)) {
return false;
}
CreateDeviceCodeRequest other = (CreateDeviceCodeRequest) obj;
return Objects.equals(idempotencyKey, other.idempotencyKey)
&& Objects.equals(deviceCode, other.deviceCode);
}
/**
* Converts this CreateDeviceCodeRequest into string format.
* @return String representation of this class
*/
@Override
public String toString() {
return "CreateDeviceCodeRequest [" + "idempotencyKey=" + idempotencyKey + ", deviceCode="
+ deviceCode + "]";
}
/**
* Builds a new {@link CreateDeviceCodeRequest.Builder} object.
* Creates the instance with the state of the current model.
* @return a new {@link CreateDeviceCodeRequest.Builder} object
*/
public Builder toBuilder() {
Builder builder = new Builder(idempotencyKey, deviceCode);
return builder;
}
/**
* Class to build instances of {@link CreateDeviceCodeRequest}.
*/
public static class Builder {
private String idempotencyKey;
private DeviceCode deviceCode;
/**
* Initialization constructor.
* @param idempotencyKey String value for idempotencyKey.
* @param deviceCode DeviceCode value for deviceCode.
*/
public Builder(String idempotencyKey, DeviceCode deviceCode) {
this.idempotencyKey = idempotencyKey;
this.deviceCode = deviceCode;
}
/**
* Setter for idempotencyKey.
* @param idempotencyKey String value for idempotencyKey.
* @return Builder
*/
public Builder idempotencyKey(String idempotencyKey) {
this.idempotencyKey = idempotencyKey;
return this;
}
/**
* Setter for deviceCode.
* @param deviceCode DeviceCode value for deviceCode.
* @return Builder
*/
public Builder deviceCode(DeviceCode deviceCode) {
this.deviceCode = deviceCode;
return this;
}
/**
* Builds a new {@link CreateDeviceCodeRequest} object using the set fields.
* @return {@link CreateDeviceCodeRequest}
*/
public CreateDeviceCodeRequest build() {
return new CreateDeviceCodeRequest(idempotencyKey, deviceCode);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy