Table of Contents

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

string

ConnectionId

Connection identifier of the connection to which users will be inserted.

[JsonProperty("connection_id")]
public string ConnectionId { get; set; }

Property Value

string

CreatedAt

Date and time the job was created.

[JsonProperty("created_at")]
public DateTime CreatedAt { get; set; }

Property Value

DateTime

ExternalId

Customer-defined id.

[JsonProperty("external_id")]
public string ExternalId { get; set; }

Property Value

string

Format

File format for this job.

[JsonProperty("format")]
public string Format { get; set; }

Property Value

string

Id

Unique identifier of this job that can be used to retrieve status later.

[JsonProperty("id")]
public string Id { get; set; }

Property Value

string

Location

Uri location of downloadable results for this job.

[JsonProperty("location")]
public Uri Location { get; set; }

Property Value

Uri

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

int

Status

Run status of this job.

[JsonProperty("status")]
public string Status { get; set; }

Property Value

string

Summary

Summary of how entries were processed by this job.

[JsonProperty("summary")]
public JobSummary Summary { get; set; }

Property Value

JobSummary

TimeLeft

Amount of expected time left to complete this job.

[JsonIgnore]
public TimeSpan TimeLeft { get; set; }

Property Value

TimeSpan

TimeLeftSeconds

Amount of expected time left to complete this job in seconds.

[JsonProperty("time_left_seconds")]
public int TimeLeftSeconds { get; set; }

Property Value

int

Type

Type of job this is.

[JsonProperty("type")]
public string Type { get; set; }

Property Value

string