/** * Jira Software Cloud API * Jira Software Cloud REST API documentation * * The version of the OpenAPI document: 1001.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The reviewer of a pull request * @export * @interface InlineResponse2004Reviewers */ export interface InlineResponse2004Reviewers { /** * The name of this reviewer. Max length is 255 characters * @type {string} * @memberof InlineResponse2004Reviewers */ name: string; /** * The approval status of this reviewer, default is UNAPPROVED * @type {string} * @memberof InlineResponse2004Reviewers */ approvalStatus?: InlineResponse2004ReviewersApprovalStatusEnum; /** * The URL of the profile for this reviewer. Max length is 1024 characters * @type {string} * @memberof InlineResponse2004Reviewers */ url?: string; /** * The URL of the avatar for this reviewer. Max length is 1024 characters * @type {string} * @memberof InlineResponse2004Reviewers */ avatar?: string; } export declare function InlineResponse2004ReviewersFromJSON(json: any): InlineResponse2004Reviewers; export declare function InlineResponse2004ReviewersFromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse2004Reviewers; export declare function InlineResponse2004ReviewersToJSON(value?: InlineResponse2004Reviewers): any; /** * @export * @enum {string} */ export declare enum InlineResponse2004ReviewersApprovalStatusEnum { APPROVED = "APPROVED", UNAPPROVED = "UNAPPROVED" }