/** * 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 { SecretLockInfoDTO } from './SecretLockInfoDTO'; /** * * @export * @interface SecretLockPage */ export interface SecretLockPage { /** * Array of secret locks. * @type {Array} * @memberof SecretLockPage */ data: Array; /** * * @type {Pagination} * @memberof SecretLockPage */ pagination: Pagination; } /** * Check if a given object implements the SecretLockPage interface. */ export declare function instanceOfSecretLockPage(value: Record): value is SecretLockPage; export declare function SecretLockPageFromJSON(json: any): SecretLockPage; export declare function SecretLockPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): SecretLockPage; export declare function SecretLockPageToJSON(json: any): SecretLockPage; export declare function SecretLockPageToJSONTyped(value?: SecretLockPage | null, ignoreDiscriminator?: boolean): any;