Files
GameDevTVObstacleDodge/Library/PackageCache/com.unity.collab-proxy@1ec4e416a4af/Editor/_Deprecated/WebApi/IsCollabProjectMigratedResponse.cs

40 lines
1.4 KiB
C#
Raw Normal View History

2026-01-08 16:50:20 +00:00
using System;
using System.ComponentModel;
using Unity.Plastic.Newtonsoft.Json;
using PlasticGui.WebApi.Responses;
namespace Unity.PlasticSCM.Editor.WebApi
{
// Placeholder. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("IsCollabProjectMigratedResponse is deprecated and will be removed in a future release", false)]
public class IsCollabProjectMigratedResponse
{
// Placeholder. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("error")]
public ErrorResponse.ErrorFields Error { get; set; }
// Placeholder. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("IsMigrated")]
public bool IsMigrated { get; set; }
// Placeholder. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("WebServerUri")]
public string WebServerUri { get; set; }
// Placeholder. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("PlasticCloudOrganizationName")]
public string PlasticCloudOrganizationName { get; set; }
// Placeholder. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("Credentials")]
public CredentialsResponse Credentials { get; set; }
}
}