class Google::Apis::AuthorizedbuyersmarketplaceV1::Note

A text note attached to the proposal to facilitate the communication between buyers and sellers.

Attributes

create_time[RW]

Output only. When this note was created. Corresponds to the JSON property ‘createTime` @return [String]

creator_role[RW]

Output only. The role who created the note. Corresponds to the JSON property ‘creatorRole` @return [String]

note[RW]

The text of the note. Maximum length is 1024 characters. Corresponds to the JSON property ‘note` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb, line 1274
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb, line 1279
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)
end