/** * Catapult REST Endpoints * OpenAPI Specification of catapult-rest * * The version of the OpenAPI document: 1.0.4 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Pagination } from './Pagination'; import type { AccountRestrictionsInfoDTO } from './AccountRestrictionsInfoDTO'; /** * * @export * @interface AccountRestrictionsPage */ export interface AccountRestrictionsPage { /** * Array of account restrictions. * @type {Array} * @memberof AccountRestrictionsPage */ data: Array; /** * * @type {Pagination} * @memberof AccountRestrictionsPage */ pagination: Pagination; } /** * Check if a given object implements the AccountRestrictionsPage interface. */ export declare function instanceOfAccountRestrictionsPage(value: Record): value is AccountRestrictionsPage; export declare function AccountRestrictionsPageFromJSON(json: any): AccountRestrictionsPage; export declare function AccountRestrictionsPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountRestrictionsPage; export declare function AccountRestrictionsPageToJSON(json: any): AccountRestrictionsPage; export declare function AccountRestrictionsPageToJSONTyped(value?: AccountRestrictionsPage | null, ignoreDiscriminator?: boolean): any;