/** * metrics-sdk-admin * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 5.4.9 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { FacilityLicenseData } from './FacilityLicenseData'; /** * * @export * @interface FacilityLicenseResponse */ export interface FacilityLicenseResponse { /** * * @type {FacilityLicenseData} * @memberof FacilityLicenseResponse */ facilityLicense: FacilityLicenseData; /** * * @type {string} * @memberof FacilityLicenseResponse */ accessToken?: string; /** * * @type {string} * @memberof FacilityLicenseResponse */ refreshToken?: string; } /** * Check if a given object implements the FacilityLicenseResponse interface. */ export declare function instanceOfFacilityLicenseResponse(value: object): value is FacilityLicenseResponse; export declare function FacilityLicenseResponseFromJSON(json: any): FacilityLicenseResponse; export declare function FacilityLicenseResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): FacilityLicenseResponse; export declare function FacilityLicenseResponseToJSON(value?: FacilityLicenseResponse | null): any;