Bagikan melalui


IssueUpdateContract Constructors

Definition

Overloads

IssueUpdateContract()

Initializes a new instance of the IssueUpdateContract class.

IssueUpdateContract(Nullable<DateTime>, String, String, String, String, String)

Initializes a new instance of the IssueUpdateContract class.

IssueUpdateContract()

Initializes a new instance of the IssueUpdateContract class.

public IssueUpdateContract ();
Public Sub New ()

Applies to

IssueUpdateContract(Nullable<DateTime>, String, String, String, String, String)

Initializes a new instance of the IssueUpdateContract class.

public IssueUpdateContract (DateTime? createdDate = default, string state = default, string apiId = default, string title = default, string description = default, string userId = default);
new Microsoft.Azure.Management.ApiManagement.Models.IssueUpdateContract : Nullable<DateTime> * string * string * string * string * string -> Microsoft.Azure.Management.ApiManagement.Models.IssueUpdateContract
Public Sub New (Optional createdDate As Nullable(Of DateTime) = Nothing, Optional state As String = Nothing, Optional apiId As String = Nothing, Optional title As String = Nothing, Optional description As String = Nothing, Optional userId As String = Nothing)

Parameters

createdDate
Nullable<DateTime>

Date and time when the issue was created.

state
String

Status of the issue. Possible values include: 'proposed', 'open', 'removed', 'resolved', 'closed'

apiId
String

A resource identifier for the API the issue was created for.

title
String

The issue title.

description
String

Text describing the issue.

userId
String

A resource identifier for the user created the issue.

Applies to