/** * 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 author of this pull request * @export * @interface InlineResponse2004Author1 */ export interface InlineResponse2004Author1 { /** * The name of this user in a format suitable for display. Max length is 255 characters * @type {string} * @memberof InlineResponse2004Author1 */ name: string; /** * The email address of the user, used to associate the user with a JIRA user. Max length is 255 characters * @type {string} * @memberof InlineResponse2004Author1 */ email?: string; /** * The username of the user, used to associate the user with a JIRA user if there are multiple users for a given email. Max length is 255 characters * @type {string} * @memberof InlineResponse2004Author1 */ username?: string; /** * The URL of the profile for this user. Max length is 1024 characters * @type {string} * @memberof InlineResponse2004Author1 */ url?: string; /** * The URL of the avatar for this user. Max length is 1024 characters * @type {string} * @memberof InlineResponse2004Author1 */ avatar?: string; } export declare function InlineResponse2004Author1FromJSON(json: any): InlineResponse2004Author1; export declare function InlineResponse2004Author1FromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse2004Author1; export declare function InlineResponse2004Author1ToJSON(value?: InlineResponse2004Author1): any;