Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ChangeLog

import type { ChangeLog } from "https://googleapis.deno.dev/v1/dfareporting:v4.ts";

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

interface ChangeLog {
accountId?: bigint;
action?: string;
changeTime?: Date;
fieldName?: string;
id?: bigint;
kind?: string;
newValue?: string;
objectId?: bigint;
objectType?: string;
oldValue?: string;
subaccountId?: bigint;
transactionId?: bigint;
userProfileId?: bigint;
userProfileName?: string;
}

§Properties

§
accountId?: bigint
[src]

Account ID of the modified object.

§
action?: string
[src]

Action which caused the change.

§
changeTime?: Date
[src]
§
fieldName?: string
[src]

Field name of the object which changed.

§
id?: bigint
[src]

ID of this change log.

§
kind?: string
[src]

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

§
newValue?: string
[src]

New value of the object field.

§
objectId?: bigint
[src]

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

§
objectType?: string
[src]

Object type of the change log.

§
oldValue?: string
[src]

Old value of the object field.

§
subaccountId?: bigint
[src]

Subaccount ID of the modified object.

§
transactionId?: bigint
[src]

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.

§
userProfileId?: bigint
[src]

ID of the user who modified the object.

§
userProfileName?: string
[src]

User profile name of the user who modified the object.