playtest-unity/playtest/Library/PackageCache/com.unity.collab-proxy@2.0.4/Editor/PlasticSCM/WebApi/ChangesetFromCollabCommitRe...

39 lines
987 B
C#
Raw Permalink Normal View History

2023-06-19 23:21:21 -04:00
using Unity.Plastic.Newtonsoft.Json;
using PlasticGui.WebApi.Responses;
namespace Unity.PlasticSCM.Editor.WebApi
{
public class ChangesetFromCollabCommitResponse
{
/// <summary>
/// Error caused by the request.
/// </summary>
[JsonProperty("error")]
public ErrorResponse.ErrorFields Error { get; set; }
/// <summary>
/// The repository ID
/// </summary>
[JsonProperty("repId")]
public uint RepId { get; set; }
/// <summary>
/// The repository module ID
/// </summary>
[JsonProperty("repModuleId")]
public uint RepModuleId { get; set; }
/// <summary>
/// The changeset ID
/// </summary>
[JsonProperty("changesetId")]
public long ChangesetId { get; set; }
/// <summary>
/// The branch ID
/// </summary>
[JsonProperty("branchId")]
public long BranchId { get; set; }
}
}