Show / Hide Table of Contents

Class ChangeLog

Describes a change that a user has made to a resource.

Inheritance
System.Object
ChangeLog
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Dfareporting.v3_4.Data
Assembly: Google.Apis.Dfareporting.v3_4.dll
Syntax
public class ChangeLog : IDirectResponseSchema

Properties

AccountId

Account ID of the modified object.

Declaration
[JsonProperty("accountId")]
public virtual long? AccountId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Action

Action which caused the change.

Declaration
[JsonProperty("action")]
public virtual string Action { get; set; }
Property Value
Type Description
System.String

ChangeTime

System.DateTime representation of ChangeTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTime? ChangeTime { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

ChangeTimeRaw

Declaration
[JsonProperty("changeTime")]
public virtual string ChangeTimeRaw { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

FieldName

Field name of the object which changed.

Declaration
[JsonProperty("fieldName")]
public virtual string FieldName { get; set; }
Property Value
Type Description
System.String

Id

ID of this change log.

Declaration
[JsonProperty("id")]
public virtual long? Id { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Kind

Identifies what kind of resource this is. Value: the fixed string "dfareporting#changeLog".

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

NewValue

New value of the object field.

Declaration
[JsonProperty("newValue")]
public virtual string NewValue { get; set; }
Property Value
Type Description
System.String

ObjectId

ID of the object of this change log. The object could be a campaign, placement, ad, or other type.

Declaration
[JsonProperty("objectId")]
public virtual long? ObjectId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ObjectType

Object type of the change log.

Declaration
[JsonProperty("objectType")]
public virtual string ObjectType { get; set; }
Property Value
Type Description
System.String

OldValue

Old value of the object field.

Declaration
[JsonProperty("oldValue")]
public virtual string OldValue { get; set; }
Property Value
Type Description
System.String

SubaccountId

Subaccount ID of the modified object.

Declaration
[JsonProperty("subaccountId")]
public virtual long? SubaccountId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

TransactionId

Transaction ID of this change log. When a single API call results in many changes, each change will have a separate ID in the change log but will share the same transactionId.

Declaration
[JsonProperty("transactionId")]
public virtual long? TransactionId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

UserProfileId

ID of the user who modified the object.

Declaration
[JsonProperty("userProfileId")]
public virtual long? UserProfileId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

UserProfileName

User profile name of the user who modified the object.

Declaration
[JsonProperty("userProfileName")]
public virtual string UserProfileName { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top