@@ -21,6 +21,9 @@ module DatadogAPIClient::V2
2121 class IssueCaseJiraIssueResult
2222 include BaseGenericModel
2323
24+ # Jira account identifier.
25+ attr_accessor :account_id
26+
2427 # Jira issue identifier.
2528 attr_accessor :issue_id
2629
@@ -30,6 +33,9 @@ class IssueCaseJiraIssueResult
3033 # Jira issue URL.
3134 attr_accessor :issue_url
3235
36+ # Jira project identifier.
37+ attr_accessor :project_id
38+
3339 # Jira project key.
3440 attr_accessor :project_key
3541
@@ -39,9 +45,11 @@ class IssueCaseJiraIssueResult
3945 # @!visibility private
4046 def self . attribute_map
4147 {
48+ :'account_id' => :'account_id' ,
4249 :'issue_id' => :'issue_id' ,
4350 :'issue_key' => :'issue_key' ,
4451 :'issue_url' => :'issue_url' ,
52+ :'project_id' => :'project_id' ,
4553 :'project_key' => :'project_key'
4654 }
4755 end
@@ -50,9 +58,11 @@ def self.attribute_map
5058 # @!visibility private
5159 def self . openapi_types
5260 {
61+ :'account_id' => :'String' ,
5362 :'issue_id' => :'String' ,
5463 :'issue_key' => :'String' ,
5564 :'issue_url' => :'String' ,
65+ :'project_id' => :'String' ,
5666 :'project_key' => :'String'
5767 }
5868 end
@@ -75,6 +85,10 @@ def initialize(attributes = {})
7585 end
7686 }
7787
88+ if attributes . key? ( :'account_id' )
89+ self . account_id = attributes [ :'account_id' ]
90+ end
91+
7892 if attributes . key? ( :'issue_id' )
7993 self . issue_id = attributes [ :'issue_id' ]
8094 end
@@ -87,6 +101,10 @@ def initialize(attributes = {})
87101 self . issue_url = attributes [ :'issue_url' ]
88102 end
89103
104+ if attributes . key? ( :'project_id' )
105+ self . project_id = attributes [ :'project_id' ]
106+ end
107+
90108 if attributes . key? ( :'project_key' )
91109 self . project_key = attributes [ :'project_key' ]
92110 end
@@ -118,9 +136,11 @@ def to_hash
118136 def ==( o )
119137 return true if self . equal? ( o )
120138 self . class == o . class &&
139+ account_id == o . account_id &&
121140 issue_id == o . issue_id &&
122141 issue_key == o . issue_key &&
123142 issue_url == o . issue_url &&
143+ project_id == o . project_id &&
124144 project_key == o . project_key &&
125145 additional_properties == o . additional_properties
126146 end
@@ -129,7 +149,7 @@ def ==(o)
129149 # @return [Integer] Hash code
130150 # @!visibility private
131151 def hash
132- [ issue_id , issue_key , issue_url , project_key , additional_properties ] . hash
152+ [ account_id , issue_id , issue_key , issue_url , project_id , project_key , additional_properties ] . hash
133153 end
134154 end
135155end
0 commit comments