Show / Hide Table of Contents

Class MarketplaceNote

A proposal is associated with a bunch of notes which may optionally be associated with a deal and/or revision number.

Inheritance
System.Object
MarketplaceNote
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.AdExchangeBuyer.v1_4.Data
Assembly: Google.Apis.AdExchangeBuyer.v1_4.dll
Syntax
public class MarketplaceNote : IDirectResponseSchema

Properties

CreatorRole

The role of the person (buyer/seller) creating the note. (readonly)

Declaration
[JsonProperty("creatorRole")]
public virtual string CreatorRole { get; set; }
Property Value
Type Description
System.String

DealId

Notes can optionally be associated with a deal. (readonly, except on create)

Declaration
[JsonProperty("dealId")]
public virtual string DealId { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Kind

Identifies what kind of resource this is. Value: the fixed string "adexchangebuyer#marketplaceNote".

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

Note

The actual note to attach. (readonly, except on create)

Declaration
[JsonProperty("note")]
public virtual string Note { get; set; }
Property Value
Type Description
System.String

NoteId

The unique id for the note. (readonly)

Declaration
[JsonProperty("noteId")]
public virtual string NoteId { get; set; }
Property Value
Type Description
System.String

ProposalId

The proposalId that a note is attached to. (readonly)

Declaration
[JsonProperty("proposalId")]
public virtual string ProposalId { get; set; }
Property Value
Type Description
System.String

ProposalRevisionNumber

If the note is associated with a proposal revision number, then store that here. (readonly, except on create)

Declaration
[JsonProperty("proposalRevisionNumber")]
public virtual long? ProposalRevisionNumber { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

TimestampMs

The timestamp (ms since epoch) that this note was created. (readonly)

Declaration
[JsonProperty("timestampMs")]
public virtual long? TimestampMs { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top