/** * 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. */ /** * * @export * @interface FeatureFlags */ export interface FeatureFlags { /** * Whether multi-asset support is enabled in connect-only mode * @type {boolean} * @memberof FeatureFlags */ connectOnlyMultiAsset: boolean; /** * Whether exchange integrations are enabled * @type {boolean} * @memberof FeatureFlags */ enableExchanges: boolean; } export declare function FeatureFlagsFromJSON(json: any): FeatureFlags; export declare function FeatureFlagsFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeatureFlags; export declare function FeatureFlagsToJSON(value?: FeatureFlags | null): any;