You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public System.Collections.Generic.ICollection<attributes> Attributes { get; set; }
82658
+
public System.Collections.Generic.ICollection<Attributes2> Attributes { get; set; }
82659
82659
82660
82660
/// <summary>
82661
82661
/// Defines the projects that the option is available in. If the scope is not defined, then the option is available in all projects.
@@ -92193,7 +92193,7 @@ namespace MyNamespace
92193
92193
/// Defines the behavior of the option in the project.If notSelectable is set, the option cannot be set as the field's value. This is useful for archiving an option that has previously been selected but shouldn't be used anymore.If defaultValue is set, the option is selected by default.
public System.Collections.Generic.ICollection<events> Events { get; set; } = new System.Collections.ObjectModel.Collection<events>();
97877
+
public System.Collections.Generic.ICollection<Events2> Events { get; set; } = new System.Collections.ObjectModel.Collection<Events2>();
97878
97878
97879
97879
/// <summary>
97880
97880
/// A list of field IDs. When the issue changelog contains any of the fields, the webhook `jira:issue_updated` is sent. If this parameter is not present, the app is notified about all field updates.
@@ -100073,7 +100073,7 @@ namespace MyNamespace
100073
100073
/// Can contain multiple field values of following types depending on `type` key
export class ProjectScopeBean implements IProjectScopeBean {
86211
86211
/** Defines the behavior of the option in the project.If notSelectable is set, the option cannot be set as the field's value. This is useful for archiving an option that has previously been selected but shouldn't be used anymore.If defaultValue is set, the option is selected by default. */
86212
-
attributes?: Attributes2[];
86212
+
attributes?: Attributes3[];
86213
86213
/** The ID of the project that the option's behavior applies to. */
86214
86214
id?: number;
86215
86215
@@ -86254,7 +86254,7 @@ export class ProjectScopeBean implements IProjectScopeBean {
86254
86254
86255
86255
export interface IProjectScopeBean {
86256
86256
/** Defines the behavior of the option in the project.If notSelectable is set, the option cannot be set as the field's value. This is useful for archiving an option that has previously been selected but shouldn't be used anymore.If defaultValue is set, the option is selected by default. */
86257
-
attributes?: Attributes2[];
86257
+
attributes?: Attributes3[];
86258
86258
/** The ID of the project that the option's behavior applies to. */
/** The level of validation to return from the API. If no values are provided, the default would return `WARNING` and `ERROR` level validation results. */
96730
96730
export class ValidationOptionsForUpdate implements IValidationOptionsForUpdate {
96731
-
levels?: levels[];
96731
+
levels?: Levels2[];
96732
96732
96733
96733
constructor(data?: IValidationOptionsForUpdate) {
96734
96734
if (data) {
@@ -96769,7 +96769,7 @@ export class ValidationOptionsForUpdate implements IValidationOptionsForUpdate {
96769
96769
96770
96770
/** The level of validation to return from the API. If no values are provided, the default would return `WARNING` and `ERROR` level validation results. */
export class WebhookDetails implements IWebhookDetails {
97774
97774
/** The Jira events that trigger the webhook. */
97775
-
events!: events[];
97775
+
events!: Events2[];
97776
97776
/** A list of field IDs. When the issue changelog contains any of the fields, the webhook `jira:issue_updated` is sent. If this parameter is not present, the app is notified about all field updates. */
97777
97777
fieldIdsFilter?: string[];
97778
97778
/** A list of issue property keys. A change of those issue properties triggers the `issue_property_set` or `issue_property_deleted` webhooks. If this parameter is not present, the app is notified about all issue property updates. */
@@ -97848,7 +97848,7 @@ export class WebhookDetails implements IWebhookDetails {
97848
97848
/** A list of webhooks. */
97849
97849
export interface IWebhookDetails {
97850
97850
/** The Jira events that trigger the webhook. */
97851
-
events: events[];
97851
+
events: Events2[];
97852
97852
/** A list of field IDs. When the issue changelog contains any of the fields, the webhook `jira:issue_updated` is sent. If this parameter is not present, the app is notified about all field updates. */
97853
97853
fieldIdsFilter?: string[];
97854
97854
/** A list of issue property keys. A change of those issue properties triggers the `issue_property_set` or `issue_property_deleted` webhooks. If this parameter is not present, the app is notified about all issue property updates. */
0 commit comments