Maze / Library /PackageCache /com.unity.collab-proxy@2.0.4 /Editor /PlasticSCM /WebApi /ChangesetFromCollabCommitResponse.cs
| using Unity.Plastic.Newtonsoft.Json; | |
| using PlasticGui.WebApi.Responses; | |
| namespace Unity.PlasticSCM.Editor.WebApi | |
| { | |
| public class ChangesetFromCollabCommitResponse | |
| { | |
| /// <summary> | |
| /// Error caused by the request. | |
| /// </summary> | |
| [] | |
| public ErrorResponse.ErrorFields Error { get; set; } | |
| /// <summary> | |
| /// The repository ID | |
| /// </summary> | |
| [] | |
| public uint RepId { get; set; } | |
| /// <summary> | |
| /// The repository module ID | |
| /// </summary> | |
| [] | |
| public uint RepModuleId { get; set; } | |
| /// <summary> | |
| /// The changeset ID | |
| /// </summary> | |
| [] | |
| public long ChangesetId { get; set; } | |
| /// <summary> | |
| /// The branch ID | |
| /// </summary> | |
| [] | |
| public long BranchId { get; set; } | |
| } | |
| } | |