Class: DatadogAPIClient::V2::CreateJiraIssueRequestDataAttributes
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::CreateJiraIssueRequestDataAttributes
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/create_jira_issue_request_data_attributes.rb
Overview
Attributes of the Jira issue to create.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#assignee_id ⇒ Object
Unique identifier of the user assigned to the Jira issue.
-
#description ⇒ Object
Description of the Jira issue.
-
#fields ⇒ Object
Custom fields of the Jira issue to create.
-
#priority ⇒ Object
Case priority.
-
#title ⇒ Object
Title of the Jira issue.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
39 40 41 |
# File 'lib/datadog_api_client/v2/models/create_jira_issue_request_data_attributes.rb', line 39 def additional_properties @additional_properties end |
#assignee_id ⇒ Object
Unique identifier of the user assigned to the Jira issue.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/create_jira_issue_request_data_attributes.rb', line 25 def assignee_id @assignee_id end |
#description ⇒ Object
Description of the Jira issue. If not provided, the description will be automatically generated.
28 29 30 |
# File 'lib/datadog_api_client/v2/models/create_jira_issue_request_data_attributes.rb', line 28 def description @description end |
#fields ⇒ Object
Custom fields of the Jira issue to create. For the list of available fields, see Jira documentation.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/create_jira_issue_request_data_attributes.rb', line 31 def fields @fields end |
#priority ⇒ Object
Case priority
34 35 36 |
# File 'lib/datadog_api_client/v2/models/create_jira_issue_request_data_attributes.rb', line 34 def priority @priority end |
#title ⇒ Object
Title of the Jira issue. If not provided, the title will be automatically generated.
37 38 39 |
# File 'lib/datadog_api_client/v2/models/create_jira_issue_request_data_attributes.rb', line 37 def title @title end |