/** * 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 commit * @export * @interface InlineResponse2004Author */ export interface InlineResponse2004Author { /** * The name of this user in a format suitable for display. Max length is 255 characters * @type {string} * @memberof InlineResponse2004Author */ 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 InlineResponse2004Author */ 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 InlineResponse2004Author */ username?: string; /** * The URL of the profile for this user. Max length is 1024 characters * @type {string} * @memberof InlineResponse2004Author */ url?: string; /** * The URL of the avatar for this user. Max length is 1024 characters * @type {string} * @memberof InlineResponse2004Author */ avatar?: string; } export declare function InlineResponse2004AuthorFromJSON(json: any): InlineResponse2004Author; export declare function InlineResponse2004AuthorFromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse2004Author; export declare function InlineResponse2004AuthorToJSON(value?: InlineResponse2004Author): any;