Package com.checkout.payments.request
Class Provider
- java.lang.Object
-
- com.checkout.payments.request.Provider
-
public final class Provider extends java.lang.Objectprovider Details of the device ID provider.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classProvider.ProviderBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Provider.ProviderBuilderbuilder()booleanequals(java.lang.Object o)java.lang.StringgetId()The unique identifier for the device.java.lang.StringgetName()The name of the provider that generated the device identifier.inthashCode()voidsetId(java.lang.String id)The unique identifier for the device.voidsetName(java.lang.String name)The name of the provider that generated the device identifier.java.lang.StringtoString()
-
-
-
Method Detail
-
builder
public static Provider.ProviderBuilder builder()
-
getId
public java.lang.String getId()
The unique identifier for the device. [Optional]
-
getName
public java.lang.String getName()
The name of the provider that generated the device identifier. [Optional]
-
setId
public void setId(java.lang.String id)
The unique identifier for the device. [Optional]
-
setName
public void setName(java.lang.String name)
The name of the provider that generated the device identifier. [Optional]
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-