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