File size: 987 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | 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; }
}
}
|