/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 ShortlinkRandomResponse */ export interface ShortlinkRandomResponse { /** * * @type {string} * @memberof ShortlinkRandomResponse */ shortlink?: string; } /** * Check if a given object implements the ShortlinkRandomResponse interface. */ export declare function instanceOfShortlinkRandomResponse(value: object): value is ShortlinkRandomResponse; export declare function ShortlinkRandomResponseFromJSON(json: any): ShortlinkRandomResponse; export declare function ShortlinkRandomResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShortlinkRandomResponse; export declare function ShortlinkRandomResponseToJSON(json: any): ShortlinkRandomResponse; export declare function ShortlinkRandomResponseToJSONTyped(value?: ShortlinkRandomResponse | null, ignoreDiscriminator?: boolean): any;