Class: Google::Apis::Adexchangebuyer2V2beta1::Note

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

Overview

A proposal may be associated to several notes.

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) ⇒ Note

Returns a new instance of Note



2981
2982
2983
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2981

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

Instance Attribute Details

#create_timeString

Output only. The timestamp for when this note was created. Corresponds to the JSON property createTime

Returns:

  • (String)


2956
2957
2958
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2956

def create_time
  @create_time
end

#creator_roleString

Output only. The role of the person (buyer/seller) creating the note. Corresponds to the JSON property creatorRole

Returns:

  • (String)


2961
2962
2963
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2961

def creator_role
  @creator_role
end

#noteString

The actual note to attach. (max-length: 1024 unicode code units) Note: This field may be set only when creating the resource. Modifying this field while updating the resource will result in an error. Corresponds to the JSON property note

Returns:

  • (String)


2969
2970
2971
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2969

def note
  @note
end

#note_idString

Output only. The unique ID for the note. Corresponds to the JSON property noteId

Returns:

  • (String)


2974
2975
2976
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2974

def note_id
  @note_id
end

#proposal_revisionFixnum

Output only. The revision number of the proposal when the note is created. Corresponds to the JSON property proposalRevision

Returns:

  • (Fixnum)


2979
2980
2981
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2979

def proposal_revision
  @proposal_revision
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2986
2987
2988
2989
2990
2991
2992
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2986

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @creator_role = args[:creator_role] if args.key?(:creator_role)
  @note = args[:note] if args.key?(:note)
  @note_id = args[:note_id] if args.key?(:note_id)
  @proposal_revision = args[:proposal_revision] if args.key?(:proposal_revision)
end