Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PP9-8576: Regenerate SDK #620

Merged
merged 1 commit into from Sep 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -14589,6 +14589,10 @@ public partial class UserWithRoles
[Newtonsoft.Json.JsonProperty("isFederated", Required = Newtonsoft.Json.Required.Always)]
public bool IsFederated { get; set; }

/// <summary>Last activity of user.</summary>
[Newtonsoft.Json.JsonProperty("lastActivity", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.DateTime? LastActivity { get; set; }

public string ToJson()
{
return Newtonsoft.Json.JsonConvert.SerializeObject(this);
Expand Down
8 changes: 8 additions & 0 deletions src/Picturepark.SDK.V1.Contract/Contracts.Generated.cs
Expand Up @@ -30804,6 +30804,10 @@ public partial class UserDetail : User
[Newtonsoft.Json.JsonProperty("audit", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public UserAuditDetail Audit { get; set; }

/// <summary>Last activity of user.</summary>
[Newtonsoft.Json.JsonProperty("lastActivity", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.DateTime? LastActivity { get; set; }

public string ToJson()
{
return Newtonsoft.Json.JsonConvert.SerializeObject(this);
Expand Down Expand Up @@ -31301,6 +31305,10 @@ public partial class UserWithRoles
[Newtonsoft.Json.JsonProperty("isFederated", Required = Newtonsoft.Json.Required.Always)]
public bool IsFederated { get; set; }

/// <summary>Last activity of user.</summary>
[Newtonsoft.Json.JsonProperty("lastActivity", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.DateTime? LastActivity { get; set; }

public string ToJson()
{
return Newtonsoft.Json.JsonConvert.SerializeObject(this);
Expand Down
6 changes: 6 additions & 0 deletions swagger/CloudManagerSwagger.json
Expand Up @@ -25515,6 +25515,12 @@
"isFederated": {
"type": "boolean",
"description": "Federated user is a user who is (currently) governed by an external identity provider."
},
"lastActivity": {
"type": "string",
"description": "Last activity of user.",
"format": "date-time",
"nullable": true
}
}
},
Expand Down
12 changes: 12 additions & 0 deletions swagger/PictureparkSwagger.json
Expand Up @@ -55872,6 +55872,12 @@
"$ref": "#/components/schemas/UserAuditDetail"
}
]
},
"lastActivity": {
"type": "string",
"description": "Last activity of user.",
"format": "date-time",
"nullable": true
}
}
}
Expand Down Expand Up @@ -56364,6 +56370,12 @@
"isFederated": {
"type": "boolean",
"description": "Federated user is a user who is (currently) governed by an external identity provider."
},
"lastActivity": {
"type": "string",
"description": "Last activity of user.",
"format": "date-time",
"nullable": true
}
}
},
Expand Down