Class RepositoryModel
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
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
Id
The id of the repository.
[JsonProperty("Id", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public long Id { get; set; }
Property Value
Name
The repository name.
[JsonProperty("Name", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Name { get; set; }
Property Value
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; }