/** * 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 MultisigDTO */ export interface MultisigDTO { /** * The version of the state * @type {number} * @memberof MultisigDTO */ version: number; /** * Address encoded using a 32-character set. * @type {string} * @memberof MultisigDTO */ accountAddress: string; /** * A number that allows uint 32 values. * @type {number} * @memberof MultisigDTO */ minApproval: number; /** * A number that allows uint 32 values. * @type {number} * @memberof MultisigDTO */ minRemoval: number; /** * Addresses of the cosignatory accounts. * @type {Array} * @memberof MultisigDTO */ cosignatoryAddresses: Array; /** * Multisig accounts where the account is cosignatory. * @type {Array} * @memberof MultisigDTO */ multisigAddresses: Array; } /** * Check if a given object implements the MultisigDTO interface. */ export declare function instanceOfMultisigDTO(value: Record): value is MultisigDTO; export declare function MultisigDTOFromJSON(json: any): MultisigDTO; export declare function MultisigDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): MultisigDTO; export declare function MultisigDTOToJSON(json: any): MultisigDTO; export declare function MultisigDTOToJSONTyped(value?: MultisigDTO | null, ignoreDiscriminator?: boolean): any;