/** * 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 CreateCommentRequestSchemaDataAttributes */ export interface CreateCommentRequestSchemaDataAttributes { /** * * @type {string} * @memberof CreateCommentRequestSchemaDataAttributes */ body: string; /** * * @type {CreateCommentRequestSchemaDataAttributesTargetTypeEnum} * @memberof CreateCommentRequestSchemaDataAttributes */ targetType: CreateCommentRequestSchemaDataAttributesTargetTypeEnum; /** * * @type {string} * @memberof CreateCommentRequestSchemaDataAttributes */ targetId: string; /** * * @type {string} * @memberof CreateCommentRequestSchemaDataAttributes */ parentCommentId?: string; /** * * @type {Array} * @memberof CreateCommentRequestSchemaDataAttributes */ mentionedUserIds?: Array; /** * * @type {boolean} * @memberof CreateCommentRequestSchemaDataAttributes */ isResolved?: boolean; } /** * @export */ export declare const CreateCommentRequestSchemaDataAttributesTargetTypeEnum: { readonly Calls: "calls"; readonly Chats: "chats"; readonly Emails: "emails"; readonly Candidates: "candidates"; readonly Jobs: "jobs"; readonly Talents: "talents"; readonly Briefs: "briefs"; readonly Tasks: "tasks"; }; export type CreateCommentRequestSchemaDataAttributesTargetTypeEnum = typeof CreateCommentRequestSchemaDataAttributesTargetTypeEnum[keyof typeof CreateCommentRequestSchemaDataAttributesTargetTypeEnum]; /** * Check if a given object implements the CreateCommentRequestSchemaDataAttributes interface. */ export declare function instanceOfCreateCommentRequestSchemaDataAttributes(value: object): value is CreateCommentRequestSchemaDataAttributes; export declare function CreateCommentRequestSchemaDataAttributesFromJSON(json: any): CreateCommentRequestSchemaDataAttributes; export declare function CreateCommentRequestSchemaDataAttributesFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCommentRequestSchemaDataAttributes; export declare function CreateCommentRequestSchemaDataAttributesToJSON(json: any): CreateCommentRequestSchemaDataAttributes; export declare function CreateCommentRequestSchemaDataAttributesToJSONTyped(value?: CreateCommentRequestSchemaDataAttributes | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateCommentRequestSchemaDataAttributes.d.ts.map