/** * 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 PublicWorkspace */ export interface PublicWorkspace { /** * * @type {string} * @memberof PublicWorkspace */ description?: string; /** * Frequently Asked Questions about this workspace stored as JSON * @type {string} * @memberof PublicWorkspace */ faq?: string; /** * * @type {string} * @memberof PublicWorkspace */ name?: string; /** * * @type {Date} * @memberof PublicWorkspace */ publishedAt?: Date; /** * * @type {string} * @memberof PublicWorkspace */ shortDescription?: string; /** * * @type {string} * @memberof PublicWorkspace */ slug?: string; /** * * @type {string} * @memberof PublicWorkspace */ tags?: string; /** * * @type {string} * @memberof PublicWorkspace */ website?: string; } /** * Check if a given object implements the PublicWorkspace interface. */ export declare function instanceOfPublicWorkspace(value: object): value is PublicWorkspace; export declare function PublicWorkspaceFromJSON(json: any): PublicWorkspace; export declare function PublicWorkspaceFromJSONTyped(json: any, ignoreDiscriminator: boolean): PublicWorkspace; export declare function PublicWorkspaceToJSON(json: any): PublicWorkspace; export declare function PublicWorkspaceToJSONTyped(value?: PublicWorkspace | null, ignoreDiscriminator?: boolean): any;