File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed
src/main/java/com/datadog/api/client/v1/model Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 44 "spec_versions": {
55 "v1": {
66 "apigentools_version": "1.6.6",
7- "regenerated": "2025-06-26 17:56:33.436535 ",
8- "spec_repo_commit": "76086f13 "
7+ "regenerated": "2025-06-30 10:29:37.915889 ",
8+ "spec_repo_commit": "be63084a "
99 },
1010 "v2": {
1111 "apigentools_version": "1.6.6",
12- "regenerated": "2025-06-26 17:56:33.454744 ",
13- "spec_repo_commit": "76086f13 "
12+ "regenerated": "2025-06-30 10:29:37.934362 ",
13+ "spec_repo_commit": "be63084a "
1414 }
1515 }
1616}
Original file line number Diff line number Diff line change @@ -16173,6 +16173,7 @@ components:
1617316173 - name
1617416174 - options
1617516175 - type
16176+ - message
1617616177 type: object
1617716178 SyntheticsMobileTestConfig:
1617816179 description: Configuration object for a Synthetic mobile test.
Original file line number Diff line number Diff line change @@ -76,12 +76,14 @@ public SyntheticsMobileTest() {}
7676 public SyntheticsMobileTest (
7777 @ JsonProperty (required = true , value = JSON_PROPERTY_CONFIG )
7878 SyntheticsMobileTestConfig config ,
79+ @ JsonProperty (required = true , value = JSON_PROPERTY_MESSAGE ) String message ,
7980 @ JsonProperty (required = true , value = JSON_PROPERTY_NAME ) String name ,
8081 @ JsonProperty (required = true , value = JSON_PROPERTY_OPTIONS )
8182 SyntheticsMobileTestOptions options ,
8283 @ JsonProperty (required = true , value = JSON_PROPERTY_TYPE ) SyntheticsMobileTestType type ) {
8384 this .config = config ;
8485 this .unparsed |= config .unparsed ;
86+ this .message = message ;
8587 this .name = name ;
8688 this .options = options ;
8789 this .unparsed |= options .unparsed ;
@@ -149,9 +151,8 @@ public SyntheticsMobileTest message(String message) {
149151 *
150152 * @return message
151153 */
152- @ jakarta .annotation .Nullable
153154 @ JsonProperty (JSON_PROPERTY_MESSAGE )
154- @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
155+ @ JsonInclude (value = JsonInclude .Include .ALWAYS )
155156 public String getMessage () {
156157 return message ;
157158 }
You can’t perform that action at this time.
0 commit comments