This commit is contained in:
Ryan Peters 2021-04-22 16:32:15 -04:00
commit 088a3f7050

View File

@ -1,7 +1,5 @@
using Newtonsoft.Json; using Newtonsoft.Json;
using System; using System;
using System.Collections.Generic;
using System.Text;
namespace Salesforce.NET.Entities namespace Salesforce.NET.Entities
{ {
@ -19,11 +17,6 @@ namespace Salesforce.NET.Entities
[JsonProperty("id")] [JsonProperty("id")]
public string RecordId { get; set; } public string RecordId { get; set; }
/// <summary>
/// Used to correlate a record insert to a batch
/// </summary>
[QueryIgnore]
public int TransactionId { get; set; }
[QueryIgnore] [QueryIgnore]
public RecordAttributes Attributes { get; set; } public RecordAttributes Attributes { get; set; }