Files
2025-11-30 08:35:03 +02:00

50 lines
1.5 KiB
C#

using System;
using System.ComponentModel;
using Unity.Plastic.Newtonsoft.Json;
using PlasticGui.WebApi.Responses;
namespace Unity.PlasticSCM.Editor.WebApi
{
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("ChangesetFromCollabCommitResponse is deprecated and will be removed in a future release", false)]
public class ChangesetFromCollabCommitResponse
{
/// <summary>
/// Error caused by the request.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("error")]
public ErrorResponse.ErrorFields Error { get; set; }
/// <summary>
/// The repository ID
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("repId")]
public uint RepId { get; set; }
/// <summary>
/// The repository module ID
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("repModuleId")]
public uint RepModuleId { get; set; }
/// <summary>
/// The changeset ID
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("changesetId")]
public long ChangesetId { get; set; }
/// <summary>
/// The branch ID
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("branchId")]
public long BranchId { get; set; }
}
}