Show / Hide Table of Contents

Class PaginationCapability

Describes pagination support for an insight type.

Inheritance
object
PaginationCapability
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.PsqlService.Models
Assembly: OCI.DotNetSDK.Psql.dll
Syntax
public class PaginationCapability

Properties

DefaultLimit

Declaration
[JsonProperty(PropertyName = "defaultLimit")]
public int? DefaultLimit { get; set; }
Property Value
Type Description
int?

Default number of items per page.

IsSupported

Declaration
[Required(ErrorMessage = "IsSupported is required.")]
[JsonProperty(PropertyName = "isSupported")]
public bool? IsSupported { get; set; }
Property Value
Type Description
bool?

Indicates whether pagination is supported.

Remarks

Required

MaxLimit

Declaration
[JsonProperty(PropertyName = "maxLimit")]
public int? MaxLimit { get; set; }
Property Value
Type Description
int?

Maximum number of items per page.

In this article
Back to top