Class UsersExportsJobRequest
- Namespace
- Auth0.ManagementApi.Models
- Assembly
- Auth0.ManagementApi.dll
Contains details for creating a users exports job.
public class UsersExportsJobRequest
- Inheritance
-
UsersExportsJobRequest
- Inherited Members
Properties
ConnectionId
The connection identifier.
[JsonProperty("connection_id")]
public string ConnectionId { get; set; }
Property Value
Fields
List of fields to be included in the export. Defaults to a predefined set of fields.
[JsonProperty("fields")]
public IList<UsersExportsJobField> Fields { get; set; }
Property Value
Format
Format of the exported file.
[JsonProperty("format")]
[JsonConverter(typeof(StringEnumConverter))]
public UsersExportsJobFormat Format { get; set; }
Property Value
Limit
Limit the number of records.
[JsonProperty("limit")]
public int? Limit { get; set; }
Property Value
- int?