Skip to content

Commit

Permalink
Update to API
Browse files Browse the repository at this point in the history
  • Loading branch information
HarmanDhunna committed May 1, 2024
1 parent b403e0e commit 23b23cd
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,9 @@ public WebJobsAuthenticationEventsContextUser() { }
[System.Text.Json.Serialization.JsonPropertyNameAttribute("userType")]
public string UserType { get { throw null; } set { } }
}
public partial class WebjobsAuthenticationEventsTokenClaim
public partial class WebJobsAuthenticationEventsTokenClaim
{
public WebjobsAuthenticationEventsTokenClaim(string id, params string[] values) { }
public WebJobsAuthenticationEventsTokenClaim(string id, params string[] values) { }
[System.ComponentModel.DataAnnotations.RequiredAttribute(AllowEmptyStrings=false)]
[System.Text.Json.Serialization.JsonPropertyNameAttribute("id")]
public string Id { get { throw null; } set { } }
Expand All @@ -227,10 +227,10 @@ public WebjobsAuthenticationEventsTokenClaim(string id, params string[] values)
public partial class WebJobsProvideClaimsForToken : Microsoft.Azure.WebJobs.Extensions.AuthenticationEvents.TokenIssuanceStart.WebJobsTokenIssuanceAction
{
public WebJobsProvideClaimsForToken() { }
public WebJobsProvideClaimsForToken(params Microsoft.Azure.WebJobs.Extensions.AuthenticationEvents.TokenIssuanceStart.WebjobsAuthenticationEventsTokenClaim[] claim) { }
public WebJobsProvideClaimsForToken(params Microsoft.Azure.WebJobs.Extensions.AuthenticationEvents.TokenIssuanceStart.WebJobsAuthenticationEventsTokenClaim[] claim) { }
[System.ComponentModel.DataAnnotations.RequiredAttribute]
[System.Text.Json.Serialization.JsonPropertyNameAttribute("claims")]
public System.Collections.Generic.List<Microsoft.Azure.WebJobs.Extensions.AuthenticationEvents.TokenIssuanceStart.WebjobsAuthenticationEventsTokenClaim> Claims { get { throw null; } }
public System.Collections.Generic.List<Microsoft.Azure.WebJobs.Extensions.AuthenticationEvents.TokenIssuanceStart.WebJobsAuthenticationEventsTokenClaim> Claims { get { throw null; } }
public void AddClaim(string Id, params string[] Values) { }
}
public abstract partial class WebJobsTokenIssuanceAction : Microsoft.Azure.WebJobs.Extensions.AuthenticationEvents.WebJobsAuthenticationEventsAction
Expand Down

0 comments on commit 23b23cd

Please sign in to comment.