Table of Contents

Class JobSummary

Namespace
Auth0.ManagementApi.Models
Assembly
Auth0.ManagementApi.dll

Represents the results summary of a job.

public class JobSummary
Inheritance
JobSummary
Inherited Members

Properties

Failed

Number of entries that failed.

[JsonProperty("failed")]
public int Failed { get; set; }

Property Value

int

Inserted

Number of entries that were successfully inserted.

[JsonProperty("inserted")]
public int Inserted { get; set; }

Property Value

int

Total

Number of total entries for this job.

[JsonProperty("total")]
public int Total { get; set; }

Property Value

int

Updated

Number of entries that were successfully updated.

[JsonProperty("updated")]
public int Updated { get; set; }

Property Value

int