Class: Google::Apis::DfareportingV2_6::ChangeLog

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v2_6/classes.rb,
generated/google/apis/dfareporting_v2_6/representations.rb,
generated/google/apis/dfareporting_v2_6/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ChangeLog

Returns a new instance of ChangeLog



1764
1765
1766
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1764

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#account_idFixnum

Account ID of the modified object. Corresponds to the JSON property accountId

Returns:

  • (Fixnum)


1693
1694
1695
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1693

def 
  @account_id
end

#actionString

Action which caused the change. Corresponds to the JSON property action

Returns:

  • (String)


1698
1699
1700
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1698

def action
  @action
end

#change_timeDateTime

Time when the object was modified. Corresponds to the JSON property changeTime

Returns:

  • (DateTime)


1703
1704
1705
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1703

def change_time
  @change_time
end

#field_nameString

Field name of the object which changed. Corresponds to the JSON property fieldName

Returns:

  • (String)


1708
1709
1710
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1708

def field_name
  @field_name
end

#idFixnum

ID of this change log. Corresponds to the JSON property id

Returns:

  • (Fixnum)


1713
1714
1715
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1713

def id
  @id
end

#kindString

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

Returns:

  • (String)


1719
1720
1721
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1719

def kind
  @kind
end

#new_valueString

New value of the object field. Corresponds to the JSON property newValue

Returns:

  • (String)


1724
1725
1726
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1724

def new_value
  @new_value
end

#obj_idFixnum

ID of the object of this change log. The object could be a campaign, placement, ad, or other type. Corresponds to the JSON property objectId

Returns:

  • (Fixnum)


1730
1731
1732
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1730

def obj_id
  @obj_id
end

#object_typeString

Object type of the change log. Corresponds to the JSON property objectType

Returns:

  • (String)


1735
1736
1737
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1735

def object_type
  @object_type
end

#old_valueString

Old value of the object field. Corresponds to the JSON property oldValue

Returns:

  • (String)


1740
1741
1742
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1740

def old_value
  @old_value
end

#subaccount_idFixnum

Subaccount ID of the modified object. Corresponds to the JSON property subaccountId

Returns:

  • (Fixnum)


1745
1746
1747
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1745

def subaccount_id
  @subaccount_id
end

#transaction_idFixnum

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. Corresponds to the JSON property transactionId

Returns:

  • (Fixnum)


1752
1753
1754
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1752

def transaction_id
  @transaction_id
end

#user_profile_idFixnum

ID of the user who modified the object. Corresponds to the JSON property userProfileId

Returns:

  • (Fixnum)


1757
1758
1759
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1757

def 
  @user_profile_id
end

#user_profile_nameString

User profile name of the user who modified the object. Corresponds to the JSON property userProfileName

Returns:

  • (String)


1762
1763
1764
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1762

def 
  @user_profile_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1769

def update!(**args)
  @account_id = args[:account_id] if args.key?(:account_id)
  @action = args[:action] if args.key?(:action)
  @change_time = args[:change_time] if args.key?(:change_time)
  @field_name = args[:field_name] if args.key?(:field_name)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @new_value = args[:new_value] if args.key?(:new_value)
  @obj_id = args[:obj_id] if args.key?(:obj_id)
  @object_type = args[:object_type] if args.key?(:object_type)
  @old_value = args[:old_value] if args.key?(:old_value)
  @subaccount_id = args[:subaccount_id] if args.key?(:subaccount_id)
  @transaction_id = args[:transaction_id] if args.key?(:transaction_id)
  @user_profile_id = args[:user_profile_id] if args.key?(:user_profile_id)
  @user_profile_name = args[:user_profile_name] if args.key?(:user_profile_name)
end