/** * 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 GlobalWalletAccessControlDomainResponse */ export interface GlobalWalletAccessControlDomainResponse { /** * * @type {string} * @memberof GlobalWalletAccessControlDomainResponse */ id: string; /** * An [RFC 6454](https://www.rfc-editor.org/rfc/rfc6454) valid url. Must not include any paths. A single wildcard (*) can be used as the first subdomain. * @type {string} * @memberof GlobalWalletAccessControlDomainResponse */ domain: string; /** * ISO 8601 timestamp of when the access control domain entry was created * @type {Date} * @memberof GlobalWalletAccessControlDomainResponse */ createdAt: Date; } export declare function GlobalWalletAccessControlDomainResponseFromJSON(json: any): GlobalWalletAccessControlDomainResponse; export declare function GlobalWalletAccessControlDomainResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GlobalWalletAccessControlDomainResponse; export declare function GlobalWalletAccessControlDomainResponseToJSON(value?: GlobalWalletAccessControlDomainResponse | null): any;