/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Sui BCS serialized transaction as hex string * @export * @interface SignMessageSuiTransaction */ export interface SignMessageSuiTransaction { /** * * @type {string} * @memberof SignMessageSuiTransaction */ chainId: string; /** * A string with a max length of 204800 characters * @type {string} * @memberof SignMessageSuiTransaction */ serializedTransaction: string; } export declare function SignMessageSuiTransactionFromJSON(json: any): SignMessageSuiTransaction; export declare function SignMessageSuiTransactionFromJSONTyped(json: any, ignoreDiscriminator: boolean): SignMessageSuiTransaction; export declare function SignMessageSuiTransactionToJSON(value?: SignMessageSuiTransaction | null): any;