Class PaginationCapability
Describes pagination support for an insight type.
Inherited Members
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. |