Table of Contents

Class RepositoryModel

Namespace
Nfield.SDK
Assembly
Nfield.Public.SDK.dll

Contains information about a repository.

public class RepositoryModel
Inheritance
RepositoryModel
Inherited Members

Properties

CreatedBy

The user that created the repository.

[JsonProperty("CreatedBy", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string CreatedBy { get; set; }

Property Value

string

DatabaseName

The name of the database that has been provisioned for this repository.

[JsonProperty("DatabaseName", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string DatabaseName { get; set; }

Property Value

string

Id

The id of the repository.

[JsonProperty("Id", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public long Id { get; set; }

Property Value

long

Name

The repository name.

[JsonProperty("Name", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Name { get; set; }

Property Value

string

PlanId

The plan id of the repository.

[JsonProperty("PlanId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public int? PlanId { get; set; }

Property Value

int?

StatusId

The status id of the repository.

[JsonProperty("StatusId", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int StatusId { get; set; }

Property Value

int