/** * 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 { NetworkTypeEnum } from './NetworkTypeEnum'; /** * * @export * @interface EmbeddedMultisigAccountModificationTransactionDTO */ export interface EmbeddedMultisigAccountModificationTransactionDTO { /** * Public key. * @type {string} * @memberof EmbeddedMultisigAccountModificationTransactionDTO */ signerPublicKey: string; /** * Entity version. * @type {number} * @memberof EmbeddedMultisigAccountModificationTransactionDTO */ version: number; /** * * @type {NetworkTypeEnum} * @memberof EmbeddedMultisigAccountModificationTransactionDTO */ network: NetworkTypeEnum; /** * * @type {number} * @memberof EmbeddedMultisigAccountModificationTransactionDTO */ type: number; /** * 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 EmbeddedMultisigAccountModificationTransactionDTO */ 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 EmbeddedMultisigAccountModificationTransactionDTO */ minApprovalDelta: number; /** * Array of cosignatory accounts to add. * @type {Array} * @memberof EmbeddedMultisigAccountModificationTransactionDTO */ addressAdditions: Array; /** * Array of cosignatory accounts to delete. * @type {Array} * @memberof EmbeddedMultisigAccountModificationTransactionDTO */ addressDeletions: Array; } /** * Check if a given object implements the EmbeddedMultisigAccountModificationTransactionDTO interface. */ export declare function instanceOfEmbeddedMultisigAccountModificationTransactionDTO(value: Record): value is EmbeddedMultisigAccountModificationTransactionDTO; export declare function EmbeddedMultisigAccountModificationTransactionDTOFromJSON(json: any): EmbeddedMultisigAccountModificationTransactionDTO; export declare function EmbeddedMultisigAccountModificationTransactionDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmbeddedMultisigAccountModificationTransactionDTO; export declare function EmbeddedMultisigAccountModificationTransactionDTOToJSON(json: any): EmbeddedMultisigAccountModificationTransactionDTO; export declare function EmbeddedMultisigAccountModificationTransactionDTOToJSONTyped(value?: EmbeddedMultisigAccountModificationTransactionDTO | null, ignoreDiscriminator?: boolean): any;