Class RepositoryPlan
Represents a subscription plan for Data Repositories.
public class RepositoryPlan
- Inheritance
-
RepositoryPlan
- Inherited Members
Properties
Description
A short description explaining what's the plan is about.
[JsonProperty("Description", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Description { get; set; }
Property Value
Id
The Id for the plan.
[JsonProperty("Id", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public long Id { get; set; }
Property Value
Name
The name of the plan.
[JsonProperty("Name", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Name { get; set; }
Property Value
Price
The monthly price of the plan.
[JsonProperty("Price", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public Amount Price { get; set; }