/** * 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. */ import { GlobalWalletSettingsCreateRequestCustomMenuLinks } from './GlobalWalletSettingsCreateRequestCustomMenuLinks'; /** * * @export * @interface GlobalWalletSettingsUpdateRequest */ export interface GlobalWalletSettingsUpdateRequest { /** * * @type {string} * @memberof GlobalWalletSettingsUpdateRequest */ walletName?: string; /** * * @type {string} * @memberof GlobalWalletSettingsUpdateRequest */ popupPageTitle?: string; /** * * @type {string} * @memberof GlobalWalletSettingsUpdateRequest */ walletIconUrl?: string; /** * * @type {string} * @memberof GlobalWalletSettingsUpdateRequest */ customCssUrl?: string; /** * * @type {string} * @memberof GlobalWalletSettingsUpdateRequest */ termsOfServiceUrl?: string; /** * * @type {string} * @memberof GlobalWalletSettingsUpdateRequest */ privacyPolicyUrl?: string; /** * * @type {string} * @memberof GlobalWalletSettingsUpdateRequest */ termsOfServiceAndPrivacyPolicyMarkdown?: string; /** * Array of {label, url} objects that add custom navigation links to the wallet menu * @type {Array} * @memberof GlobalWalletSettingsUpdateRequest */ customMenuLinks?: Array; /** * When true, users can also log in with external wallets (MetaMask, WalletConnect, etc.) * @type {boolean} * @memberof GlobalWalletSettingsUpdateRequest */ enableLoginWithExternalWallets?: boolean; } export declare function GlobalWalletSettingsUpdateRequestFromJSON(json: any): GlobalWalletSettingsUpdateRequest; export declare function GlobalWalletSettingsUpdateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GlobalWalletSettingsUpdateRequest; export declare function GlobalWalletSettingsUpdateRequestToJSON(value?: GlobalWalletSettingsUpdateRequest | null): any;