/*
* 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
* Generated by: https://openapi-generator.tech
*/
/// CreateWorkflowTransitionScreenDetails : The details of a transition screen.
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct CreateWorkflowTransitionScreenDetails {
/// The ID of the screen.
#[serde(rename = "id")]
pub id: String,
}
impl CreateWorkflowTransitionScreenDetails {
/// The details of a transition screen.
pub fn new(id: String) -> CreateWorkflowTransitionScreenDetails {
CreateWorkflowTransitionScreenDetails {
id,
}
}
}