/** * 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 { GlobalWalletAccessControlDomainResponse } from './GlobalWalletAccessControlDomainResponse'; import { GlobalWalletAccessControlTypeEnum } from './GlobalWalletAccessControlTypeEnum'; /** * * @export * @interface GlobalWalletAccessControlResponse */ export interface GlobalWalletAccessControlResponse { /** * * @type {string} * @memberof GlobalWalletAccessControlResponse */ id: string; /** * * @type {string} * @memberof GlobalWalletAccessControlResponse */ projectEnvironmentId: string; /** * * @type {GlobalWalletAccessControlTypeEnum} * @memberof GlobalWalletAccessControlResponse */ type: GlobalWalletAccessControlTypeEnum; /** * ISO 8601 timestamp of when domain access control was enabled, or null if disabled * @type {Date} * @memberof GlobalWalletAccessControlResponse */ enabledAt: Date | null; /** * List of domain objects in the access control list * @type {Array} * @memberof GlobalWalletAccessControlResponse */ domains: Array; } export declare function GlobalWalletAccessControlResponseFromJSON(json: any): GlobalWalletAccessControlResponse; export declare function GlobalWalletAccessControlResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GlobalWalletAccessControlResponse; export declare function GlobalWalletAccessControlResponseToJSON(value?: GlobalWalletAccessControlResponse | null): any;