Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public PartnerResponse()
/// include: 'Active', 'Deleted'</param>
/// <param name="type">Type of resource.
/// "Microsoft.ManagementPartner/partners"</param>
public PartnerResponse(int? etag = default(int?), string id = default(string), string name = default(string), string partnerId = default(string), string partnerName = default(string), string tenantId = default(string), string objectId = default(string), string version = default(string), System.DateTime? updatedTime = default(System.DateTime?), System.DateTime? createdTime = default(System.DateTime?), string state = default(string), string type = default(string))
public PartnerResponse(int? etag = default(int?), string id = default(string), string name = default(string), string partnerId = default(string), string partnerName = default(string), string tenantId = default(string), string objectId = default(string), int? version = default(int?), System.DateTime? updatedTime = default(System.DateTime?), System.DateTime? createdTime = default(System.DateTime?), string state = default(string), string type = default(string))
{
Etag = etag;
Id = id;
Expand Down Expand Up @@ -117,7 +117,7 @@ public PartnerResponse()
/// Gets or sets this is the version.
/// </summary>
[JsonProperty(PropertyName = "properties.version")]
public string Version { get; set; }
public int? Version { get; set; }

/// <summary>
/// Gets or sets this is the DateTime when the partner was updated.
Expand Down