/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Details about the server Jira is running on. * @export * @interface WorkflowTransitionProperty */ export interface WorkflowTransitionProperty { [key: string]: object | any; /** * The key of the transition property. Also known as the name of the transition property. * @type {string} * @memberof WorkflowTransitionProperty */ readonly key?: string; /** * The ID of the transition property. * @type {string} * @memberof WorkflowTransitionProperty */ readonly id?: string; /** * The value of the transition property. * @type {string} * @memberof WorkflowTransitionProperty */ value: string; } export declare function WorkflowTransitionPropertyFromJSON(json: any): WorkflowTransitionProperty; export declare function WorkflowTransitionPropertyFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowTransitionProperty; export declare function WorkflowTransitionPropertyToJSON(value?: WorkflowTransitionProperty): any;