public class RefundAnalytic extends GenericParcelable implements Validator, JSONifiable
Modifier and Type | Class and Description |
---|---|
static interface |
RefundAnalytic.Constraints |
JSONifiable.Creator<T>
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<RefundAnalytic> |
CREATOR |
static JSONifiable.Creator<RefundAnalytic> |
JSON_CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier | Constructor and Description |
---|---|
|
RefundAnalytic()
Constructs a new empty instance.
|
protected |
RefundAnalytic(boolean noInit)
Constructs a new empty instance.
|
|
RefundAnalytic(JSONObject jsonObject)
Construct a new instance backed by the given JSONObject, the parameter is not copied so changes to it will be
reflected in this instance and vice-versa.
|
|
RefundAnalytic(RefundAnalytic src)
Constructs a new instance that is a deep copy of the source instance.
|
|
RefundAnalytic(String json)
Constructs a new instance from the given JSON String.
|
Modifier and Type | Method and Description |
---|---|
void |
clearMerchantId()
Clears the 'merchantId' field, the 'has' method for this field will now return false
|
void |
clearUuid()
Clears the 'uuid' field, the 'has' method for this field will now return false
|
boolean |
containsChanges()
Returns true if this instance has any changes.
|
RefundAnalytic |
copyChanges()
Create a copy of this instance that contains only fields that were set after the constructor was called.
|
protected GenericClient |
getGenericClient() |
JSONObject |
getJSONObject()
Returns the internal JSONObject backing this instance, the return value is not a copy so changes to it will be
reflected in this instance and vice-versa.
|
Long |
getMerchantId() |
String |
getUuid() |
boolean |
hasMerchantId()
Checks whether the 'merchantId' field has been set, however the value could be null
|
boolean |
hasUuid()
Checks whether the 'uuid' field has been set, however the value could be null
|
boolean |
isNotNullMerchantId()
Checks whether the 'merchantId' field is set and is not null
|
boolean |
isNotNullUuid()
Checks whether the 'uuid' field is set and is not null
|
void |
mergeChanges(RefundAnalytic src)
Copy all the changed fields from the given source to this instance.
|
void |
resetChangeLog()
Reset the log of changes made to this instance, calling copyChanges() after this would return an empty instance.
|
RefundAnalytic |
setMerchantId(Long merchantId)
Sets the field 'merchantId'.
|
RefundAnalytic |
setUuid(String uuid)
Sets the field 'uuid'.
|
void |
validate() |
describeContents, getBundle, toString, writeToParcel
public static final Parcelable.Creator<RefundAnalytic> CREATOR
public static final JSONifiable.Creator<RefundAnalytic> JSON_CREATOR
public RefundAnalytic()
protected RefundAnalytic(boolean noInit)
public RefundAnalytic(String json) throws IllegalArgumentException
IllegalArgumentException
public RefundAnalytic(JSONObject jsonObject)
public RefundAnalytic(RefundAnalytic src)
public String getUuid()
public Long getMerchantId()
protected GenericClient getGenericClient()
getGenericClient
in class GenericParcelable
public JSONObject getJSONObject()
getJSONObject
in interface JSONifiable
public boolean isNotNullUuid()
public boolean isNotNullMerchantId()
public boolean hasUuid()
public boolean hasMerchantId()
public RefundAnalytic setUuid(String uuid)
public RefundAnalytic setMerchantId(Long merchantId)
public void clearUuid()
public void clearMerchantId()
public boolean containsChanges()
public void resetChangeLog()
public RefundAnalytic copyChanges()
public void mergeChanges(RefundAnalytic src)