/** * 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 DeeplinkUrlResponse */ export interface DeeplinkUrlResponse { /** * * @type {string} * @memberof DeeplinkUrlResponse */ id: string; /** * A valid deeplink url. Accepts custom schemes. Must not include any paths. A single wildcard (*) can be used as the first subdomain. * @type {string} * @memberof DeeplinkUrlResponse */ url: string; /** * ISO 8601 timestamp of when the deeplink URL was created * @type {Date} * @memberof DeeplinkUrlResponse */ createdAt: Date; } export declare function DeeplinkUrlResponseFromJSON(json: any): DeeplinkUrlResponse; export declare function DeeplinkUrlResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeeplinkUrlResponse; export declare function DeeplinkUrlResponseToJSON(value?: DeeplinkUrlResponse | null): any;