/** * 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. */ /** * * @export * @interface AccountIds */ export interface AccountIds { /** * Array of public keys. * @type {Array} * @memberof AccountIds */ publicKeys?: Array; /** * Array of addresses. * @type {Array} * @memberof AccountIds */ addresses?: Array; } /** * Check if a given object implements the AccountIds interface. */ export declare function instanceOfAccountIds(value: Record): value is AccountIds; export declare function AccountIdsFromJSON(json: any): AccountIds; export declare function AccountIdsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountIds; export declare function AccountIdsToJSON(json: any): AccountIds; export declare function AccountIdsToJSONTyped(value?: AccountIds | null, ignoreDiscriminator?: boolean): any;