class Google::Apis::Adexchangebuyer2V2beta1::Note
A proposal may be associated to several notes.
Attributes
Output only. The timestamp for when this note was created. Corresponds to the JSON property `createTime` @return [String]
Output only. The role of the person (buyer/seller) creating the note. Corresponds to the JSON property `creatorRole` @return [String]
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` @return [String]
Output only. The unique ID for the note. Corresponds to the JSON property `noteId` @return [String]
Output only. The revision number of the proposal when the note is created. Corresponds to the JSON property `proposalRevision` @return [Fixnum]
Public Class Methods
# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 2931 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 2936 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