No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SubscriptionDetailsResponse.cs 1004B

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using Unity.Plastic.Newtonsoft.Json;
  4. namespace Unity.PlasticSCM.Editor.WebApi
  5. {
  6. public class SubscriptionDetailsResponse
  7. {
  8. [JsonProperty("createdAt")]
  9. public DateTime CreatedAt { get; set; }
  10. [JsonProperty("subscriptionType")]
  11. public string ProductType { get; set; }
  12. [JsonProperty("subscriptionSource")]
  13. public string OrderSource { get; set; }
  14. [JsonProperty("genesisOrgId")]
  15. public string GenesisOrgId { get; set; }
  16. [JsonProperty("plasticOrganizationName")]
  17. public string OrganizationName { get; set; }
  18. [JsonProperty("readonlyStatus")]
  19. public string ReadonlyStatus { get; set; }
  20. [JsonProperty("isAdmin")]
  21. public bool IsAdmin { get; set; }
  22. [JsonProperty("isOwner")]
  23. public bool IsOwner { get; set; }
  24. [JsonProperty("extraData")]
  25. public Dictionary<string, object> ExtraData { get; set; }
  26. }
  27. }