Class OrganizationInvitation
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record OrganizationInvitation : IJsonOnDeserialized, IEquatable<OrganizationInvitation>
- Inheritance
-
OrganizationInvitation
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
AppMetadata
[JsonPropertyName("app_metadata")]
public Dictionary<string, object?>? AppMetadata { get; set; }
Property Value
ClientId
Auth0 client ID. Used to resolve the application's login initiation endpoint.
[JsonPropertyName("client_id")]
public string? ClientId { get; set; }
Property Value
ConnectionId
The id of the connection to force invitee to authenticate with.
[JsonPropertyName("connection_id")]
public string? ConnectionId { get; set; }
Property Value
CreatedAt
The ISO 8601 formatted timestamp representing the creation time of the invitation.
[JsonPropertyName("created_at")]
public DateTime? CreatedAt { get; set; }
Property Value
ExpiresAt
The ISO 8601 formatted timestamp representing the expiration time of the invitation.
[JsonPropertyName("expires_at")]
public DateTime? ExpiresAt { get; set; }
Property Value
Id
The id of the user invitation.
[JsonPropertyName("id")]
public string? Id { get; set; }
Property Value
InvitationUrl
The invitation url to be send to the invitee.
[JsonPropertyName("invitation_url")]
public string? InvitationUrl { get; set; }
Property Value
Invitee
[JsonPropertyName("invitee")]
public OrganizationInvitationInvitee? Invitee { get; set; }
Property Value
Inviter
[JsonPropertyName("inviter")]
public OrganizationInvitationInviter? Inviter { get; set; }
Property Value
OrganizationId
Organization identifier.
[JsonPropertyName("organization_id")]
public string? OrganizationId { get; set; }
Property Value
Roles
List of roles IDs to associated with the user.
[JsonPropertyName("roles")]
public IEnumerable<string>? Roles { get; set; }
Property Value
TicketId
The id of the invitation ticket
[JsonPropertyName("ticket_id")]
public string? TicketId { get; set; }
Property Value
UserMetadata
[JsonPropertyName("user_metadata")]
public Dictionary<string, object?>? UserMetadata { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.