Package model
Class ListDisputesQueryParams
- java.lang.Object
-
- model.ListDisputesQueryParams
-
@Generated("org.openapitools.codegen.languages.JavaClientCodegen") public class ListDisputesQueryParams extends Object
ListDisputesQueryParams
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classListDisputesQueryParams.CustomTypeAdapterFactory
-
Field Summary
Fields Modifier and Type Field Description static HashSet<String>openapiFieldsstatic HashSet<String>openapiRequiredFieldsstatic StringSERIALIZED_NAME_CREATED_AT_GTEstatic StringSERIALIZED_NAME_CREATED_AT_LTEstatic StringSERIALIZED_NAME_LIMITstatic StringSERIALIZED_NAME_OFFSETstatic StringSERIALIZED_NAME_SORTstatic StringSERIALIZED_NAME_UPDATED_AT_GTEstatic StringSERIALIZED_NAME_UPDATED_AT_LTE
-
Constructor Summary
Constructors Constructor Description ListDisputesQueryParams()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ListDisputesQueryParamscreatedAtGte(String createdAtGte)ListDisputesQueryParamscreatedAtLte(String createdAtLte)booleanequals(Object o)static ListDisputesQueryParamsfromJson(String jsonString)Create an instance of ListDisputesQueryParams given an JSON stringStringgetCreatedAtGte()Filter where `created_at` is after the given date.StringgetCreatedAtLte()Filter where `created_at` is before the given date.LonggetLimit()The numbers of items to return.LonggetOffset()The number of items to skip before starting to collect the result set.StringgetSort()Specify key to be used for sorting the collection.StringgetUpdatedAtGte()Filter where `updated_at` is after the given date.StringgetUpdatedAtLte()Filter where `updated_at` is before the given date.inthashCode()ListDisputesQueryParamslimit(Long limit)ListDisputesQueryParamsoffset(Long offset)voidsetCreatedAtGte(String createdAtGte)voidsetCreatedAtLte(String createdAtLte)voidsetLimit(Long limit)voidsetOffset(Long offset)voidsetSort(String sort)voidsetUpdatedAtGte(String updatedAtGte)voidsetUpdatedAtLte(String updatedAtLte)ListDisputesQueryParamssort(String sort)StringtoJson()Convert an instance of ListDisputesQueryParams to an JSON stringStringtoString()ListDisputesQueryParamsupdatedAtGte(String updatedAtGte)ListDisputesQueryParamsupdatedAtLte(String updatedAtLte)static voidvalidateJsonObject(com.google.gson.JsonObject jsonObj)Validates the JSON Object and throws an exception if issues found
-
-
-
Field Detail
-
SERIALIZED_NAME_SORT
public static final String SERIALIZED_NAME_SORT
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_OFFSET
public static final String SERIALIZED_NAME_OFFSET
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_LIMIT
public static final String SERIALIZED_NAME_LIMIT
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_CREATED_AT_GTE
public static final String SERIALIZED_NAME_CREATED_AT_GTE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_CREATED_AT_LTE
public static final String SERIALIZED_NAME_CREATED_AT_LTE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_UPDATED_AT_GTE
public static final String SERIALIZED_NAME_UPDATED_AT_GTE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_UPDATED_AT_LTE
public static final String SERIALIZED_NAME_UPDATED_AT_LTE
- See Also:
- Constant Field Values
-
-
Method Detail
-
sort
public ListDisputesQueryParams sort(String sort)
-
getSort
@Nullable public String getSort()
Specify key to be used for sorting the collection.- Returns:
- sort
-
setSort
public void setSort(String sort)
-
offset
public ListDisputesQueryParams offset(Long offset)
-
getOffset
@Nullable public Long getOffset()
The number of items to skip before starting to collect the result set.- Returns:
- offset
-
setOffset
public void setOffset(Long offset)
-
limit
public ListDisputesQueryParams limit(Long limit)
-
setLimit
public void setLimit(Long limit)
-
createdAtGte
public ListDisputesQueryParams createdAtGte(String createdAtGte)
-
getCreatedAtGte
@Nullable public String getCreatedAtGte()
Filter where `created_at` is after the given date.- Returns:
- createdAtGte
-
setCreatedAtGte
public void setCreatedAtGte(String createdAtGte)
-
createdAtLte
public ListDisputesQueryParams createdAtLte(String createdAtLte)
-
getCreatedAtLte
@Nullable public String getCreatedAtLte()
Filter where `created_at` is before the given date.- Returns:
- createdAtLte
-
setCreatedAtLte
public void setCreatedAtLte(String createdAtLte)
-
updatedAtGte
public ListDisputesQueryParams updatedAtGte(String updatedAtGte)
-
getUpdatedAtGte
@Nullable public String getUpdatedAtGte()
Filter where `updated_at` is after the given date.- Returns:
- updatedAtGte
-
setUpdatedAtGte
public void setUpdatedAtGte(String updatedAtGte)
-
updatedAtLte
public ListDisputesQueryParams updatedAtLte(String updatedAtLte)
-
getUpdatedAtLte
@Nullable public String getUpdatedAtLte()
Filter where `updated_at` is before the given date.- Returns:
- updatedAtLte
-
setUpdatedAtLte
public void setUpdatedAtLte(String updatedAtLte)
-
validateJsonObject
public static void validateJsonObject(com.google.gson.JsonObject jsonObj) throws IOExceptionValidates the JSON Object and throws an exception if issues found- Parameters:
jsonObj- JSON Object- Throws:
IOException- if the JSON Object is invalid with respect to ListDisputesQueryParams
-
fromJson
public static ListDisputesQueryParams fromJson(String jsonString) throws IOException
Create an instance of ListDisputesQueryParams given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of ListDisputesQueryParams
- Throws:
IOException- if the JSON string is invalid with respect to ListDisputesQueryParams
-
toJson
public String toJson()
Convert an instance of ListDisputesQueryParams to an JSON string- Returns:
- JSON string
-
-