PaginationCapability¶
-
class
oci.psql.models.PaginationCapability(**kwargs)¶ Bases:
objectDescribes pagination support for an insight type.
Methods
__init__(**kwargs)Initializes a new PaginationCapability object with values from keyword arguments. Attributes
default_limitGets the default_limit of this PaginationCapability. is_supported[Required] Gets the is_supported of this PaginationCapability. max_limitGets the max_limit of this PaginationCapability. -
__init__(**kwargs)¶ Initializes a new PaginationCapability object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - is_supported (bool) – The value to assign to the is_supported property of this PaginationCapability.
- max_limit (int) – The value to assign to the max_limit property of this PaginationCapability.
- default_limit (int) – The value to assign to the default_limit property of this PaginationCapability.
-
default_limit¶ Gets the default_limit of this PaginationCapability. Default number of items per page.
Returns: The default_limit of this PaginationCapability. Return type: int
-
is_supported¶ [Required] Gets the is_supported of this PaginationCapability. Indicates whether pagination is supported.
Returns: The is_supported of this PaginationCapability. Return type: bool
-
max_limit¶ Gets the max_limit of this PaginationCapability. Maximum number of items per page.
Returns: The max_limit of this PaginationCapability. Return type: int
-