/** * Audius API * * The version of the OpenAPI document: 1.0 * * * 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 { CommentEntityType } from './CommentEntityType'; /** * * @export * @interface PinCommentRequestBody */ export interface PinCommentRequestBody { /** * * @type {CommentEntityType} * @memberof PinCommentRequestBody */ entityType: CommentEntityType; /** * ID of the entity (track) the comment is on * @type {number} * @memberof PinCommentRequestBody */ entityId: number; } /** * Check if a given object implements the PinCommentRequestBody interface. */ export declare function instanceOfPinCommentRequestBody(value: object): value is PinCommentRequestBody; export declare function PinCommentRequestBodyFromJSON(json: any): PinCommentRequestBody; export declare function PinCommentRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): PinCommentRequestBody; export declare function PinCommentRequestBodyToJSON(value?: PinCommentRequestBody | null): any;