/** * 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 { DeeplinkUrlResponse } from './DeeplinkUrlResponse'; /** * * @export * @interface DeeplinkUrlsResponse */ export interface DeeplinkUrlsResponse { /** * List of deeplink URL objects configured for this environment * @type {Array} * @memberof DeeplinkUrlsResponse */ deeplinkUrls: Array; } export declare function DeeplinkUrlsResponseFromJSON(json: any): DeeplinkUrlsResponse; export declare function DeeplinkUrlsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeeplinkUrlsResponse; export declare function DeeplinkUrlsResponseToJSON(value?: DeeplinkUrlsResponse | null): any;