Show / Hide Table of Contents

Class ListNoteOccurrencesResponse

Response including listed occurrences for a note.

Inheritance
System.Object
ListNoteOccurrencesResponse
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.ContainerAnalysis.v1alpha1.Data
Assembly: Google.Apis.ContainerAnalysis.v1alpha1.dll
Syntax
public class ListNoteOccurrencesResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

NextPageToken

Token to receive the next page of notes.

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

Occurrences

The occurrences attached to the specified note.

Declaration
[JsonProperty("occurrences")]
public virtual IList<Occurrence> Occurrences { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Occurrence>

Implements

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