File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -500,6 +500,14 @@ export class Environment {
500500 * An array of tags for this environment.
501501 */
502502 'tags' ?: Array < string > ;
503+ /**
504+ * Determines if this environment requires comments for flag and segment changes.
505+ */
506+ 'requireComments' ?: boolean ;
507+ /**
508+ * Determines if this environment requires confirmation for flag and segment changes.
509+ */
510+ 'confirmChanges' ?: boolean ;
503511
504512 static discriminator : string | undefined = undefined ;
505513
@@ -558,6 +566,16 @@ export class Environment {
558566 "name" : "tags" ,
559567 "baseName" : "tags" ,
560568 "type" : "Array<string>"
569+ } ,
570+ {
571+ "name" : "requireComments" ,
572+ "baseName" : "requireComments" ,
573+ "type" : "boolean"
574+ } ,
575+ {
576+ "name" : "confirmChanges" ,
577+ "baseName" : "confirmChanges" ,
578+ "type" : "boolean"
561579 } ] ;
562580
563581 static getAttributeTypeMap ( ) {
Original file line number Diff line number Diff line change @@ -1350,6 +1350,18 @@ definitions:
13501350 items :
13511351 type : string
13521352 description : An array of tags for this environment.
1353+ requireComments :
1354+ type : boolean
1355+ example : false
1356+ description : >-
1357+ Determines if this environment requires comments for flag and segment
1358+ changes.
1359+ confirmChanges :
1360+ type : boolean
1361+ example : false
1362+ description : >-
1363+ Determines if this environment requires confirmation for flag and
1364+ segment changes.
13531365 EnvironmentPost :
13541366 type : object
13551367 properties :
You can’t perform that action at this time.
0 commit comments