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.
39 lines
987 B
39 lines
987 B
2 years ago
|
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; }
|
||
|
}
|
||
|
}
|