study/first_study/Library/PackageCache/com.unity.collab-proxy@1ec4e416a4af/Editor/WebApi/SubscriptionDetailsResponse.cs
jh04010421 739d49f1a0 Unity | 2026.01.20
수업 실습 파일
2026-01-20 11:01:57 +09:00

58 lines
2.0 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using Unity.Plastic.Newtonsoft.Json;
namespace Unity.PlasticSCM.Editor.WebApi
{
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
public class SubscriptionDetailsResponse
{
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("createdAt")]
public DateTime CreatedAt { get; set; }
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("subscriptionType")]
public string ProductType { get; set; }
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("subscriptionSource")]
public string OrderSource { get; set; }
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("genesisOrgId")]
public string GenesisOrgId { get; set; }
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("plasticOrganizationName")]
public string OrganizationName { get; set; }
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("readonlyStatus")]
public string ReadonlyStatus { get; set; }
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("isAdmin")]
public bool IsAdmin { get; set; }
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("isOwner")]
public bool IsOwner { get; set; }
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("extraData")]
public Dictionary<string, object> ExtraData { get; set; }
}
}