/** * 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 MultisigAccountModificationTransactionBodyDTO */ export interface MultisigAccountModificationTransactionBodyDTO { /** * Number of signatures needed to remove a cosignatory. * If we are modifying an existing multisig account, this indicates the relative change of the minimum cosignatories. * * @type {number} * @memberof MultisigAccountModificationTransactionBodyDTO */ minRemovalDelta: number; /** * Number of signatures needed to approve a transaction. * If we are modifying an existing multisig account, this indicates the relative change of the minimum cosignatories. * * @type {number} * @memberof MultisigAccountModificationTransactionBodyDTO */ minApprovalDelta: number; /** * Array of cosignatory accounts to add. * @type {Array} * @memberof MultisigAccountModificationTransactionBodyDTO */ addressAdditions: Array; /** * Array of cosignatory accounts to delete. * @type {Array} * @memberof MultisigAccountModificationTransactionBodyDTO */ addressDeletions: Array; } /** * Check if a given object implements the MultisigAccountModificationTransactionBodyDTO interface. */ export declare function instanceOfMultisigAccountModificationTransactionBodyDTO(value: Record): value is MultisigAccountModificationTransactionBodyDTO; export declare function MultisigAccountModificationTransactionBodyDTOFromJSON(json: any): MultisigAccountModificationTransactionBodyDTO; export declare function MultisigAccountModificationTransactionBodyDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): MultisigAccountModificationTransactionBodyDTO; export declare function MultisigAccountModificationTransactionBodyDTOToJSON(json: any): MultisigAccountModificationTransactionBodyDTO; export declare function MultisigAccountModificationTransactionBodyDTOToJSONTyped(value?: MultisigAccountModificationTransactionBodyDTO | null, ignoreDiscriminator?: boolean): any;