Class CreateImportUsersRequestContent
- Namespace
- Auth0.ManagementApi.Jobs
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record CreateImportUsersRequestContent : IEquatable<CreateImportUsersRequestContent>
- Inheritance
-
CreateImportUsersRequestContent
- Implements
- Inherited Members
- Extension Methods
Properties
ConnectionId
connection_id of the connection to which users will be imported.
public required string ConnectionId { get; set; }
Property Value
ExternalId
Customer-defined ID.
public string? ExternalId { get; set; }
Property Value
SendCompletionEmail
Whether to send a completion email to all tenant owners when the job is finished (true) or not (false).
public bool? SendCompletionEmail { get; set; }
Property Value
- bool?
Upsert
Whether to update users if they already exist (true) or to ignore them (false).
public bool? Upsert { get; set; }
Property Value
- bool?
Users
public required FileParameter Users { 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.