/** * 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 GlobalWalletAccessControlDomainCreateRequest */ export interface GlobalWalletAccessControlDomainCreateRequest { /** * 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 GlobalWalletAccessControlDomainCreateRequest */ domain: string; } export declare function GlobalWalletAccessControlDomainCreateRequestFromJSON(json: any): GlobalWalletAccessControlDomainCreateRequest; export declare function GlobalWalletAccessControlDomainCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GlobalWalletAccessControlDomainCreateRequest; export declare function GlobalWalletAccessControlDomainCreateRequestToJSON(value?: GlobalWalletAccessControlDomainCreateRequest | null): any;