Class Job
- Namespace
- Auth0.ManagementApi.Models
- Assembly
- Auth0.ManagementApi.dll
Represents a background job.
public class Job
- Inheritance
-
Job
- Inherited Members
Properties
Connection
Connection name to which users will be inserted.
[JsonProperty("connection")]
public string Connection { get; set; }
Property Value
ConnectionId
Connection identifier of the connection to which users will be inserted.
[JsonProperty("connection_id")]
public string ConnectionId { get; set; }
Property Value
CreatedAt
Date and time the job was created.
[JsonProperty("created_at")]
public DateTime CreatedAt { get; set; }
Property Value
ExternalId
Customer-defined id.
[JsonProperty("external_id")]
public string ExternalId { get; set; }
Property Value
Format
File format for this job.
[JsonProperty("format")]
public string Format { get; set; }
Property Value
Id
Unique identifier of this job that can be used to retrieve status later.
[JsonProperty("id")]
public string Id { get; set; }
Property Value
Location
Uri location of downloadable results for this job.
[JsonProperty("location")]
public Uri Location { get; set; }
Property Value
Remarks
Used by user export jobs.
PercentageDone
How much of this job has been completed as a percentage.
[JsonProperty("percentage_done")]
public int PercentageDone { get; set; }
Property Value
Status
Run status of this job.
[JsonProperty("status")]
public string Status { get; set; }
Property Value
Summary
Summary of how entries were processed by this job.
[JsonProperty("summary")]
public JobSummary Summary { get; set; }
Property Value
TimeLeft
Amount of expected time left to complete this job.
[JsonIgnore]
public TimeSpan TimeLeft { get; set; }
Property Value
TimeLeftSeconds
Amount of expected time left to complete this job in seconds.
[JsonProperty("time_left_seconds")]
public int TimeLeftSeconds { get; set; }
Property Value
Type
Type of job this is.
[JsonProperty("type")]
public string Type { get; set; }