/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * 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 CommentRelationshipsAuthorSchemaData */ export interface CommentRelationshipsAuthorSchemaData { /** * * @type {CommentRelationshipsAuthorSchemaDataTypeEnum} * @memberof CommentRelationshipsAuthorSchemaData */ type?: CommentRelationshipsAuthorSchemaDataTypeEnum; /** * * @type {string} * @memberof CommentRelationshipsAuthorSchemaData */ id?: string; } /** * @export */ export declare const CommentRelationshipsAuthorSchemaDataTypeEnum: { readonly Users: "users"; }; export type CommentRelationshipsAuthorSchemaDataTypeEnum = typeof CommentRelationshipsAuthorSchemaDataTypeEnum[keyof typeof CommentRelationshipsAuthorSchemaDataTypeEnum]; /** * Check if a given object implements the CommentRelationshipsAuthorSchemaData interface. */ export declare function instanceOfCommentRelationshipsAuthorSchemaData(value: object): value is CommentRelationshipsAuthorSchemaData; export declare function CommentRelationshipsAuthorSchemaDataFromJSON(json: any): CommentRelationshipsAuthorSchemaData; export declare function CommentRelationshipsAuthorSchemaDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentRelationshipsAuthorSchemaData; export declare function CommentRelationshipsAuthorSchemaDataToJSON(json: any): CommentRelationshipsAuthorSchemaData; export declare function CommentRelationshipsAuthorSchemaDataToJSONTyped(value?: CommentRelationshipsAuthorSchemaData | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CommentRelationshipsAuthorSchemaData.d.ts.map