Show / Hide Table of Contents

Class GoogleSearchIdeahubV1betaIdeaActivity

An idea activity entry.

Inheritance
System.Object
GoogleSearchIdeahubV1betaIdeaActivity
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.Ideahub.v1beta.Data
Assembly: Google.Apis.Ideahub.v1beta.dll
Syntax
public class GoogleSearchIdeahubV1betaIdeaActivity : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Ideas

The Idea IDs for this entry. If empty, topics should be set.

Declaration
[JsonProperty("ideas")]
public virtual IList<string> Ideas { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Name

Unique identifier for the idea activity. The name is ignored when creating an idea activity. Format: platforms/{platform}/properties/{property}/ideaActivities/{idea_activity}

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

Topics

The Topic IDs for this entry. If empty, ideas should be set.

Declaration
[JsonProperty("topics")]
public virtual IList<string> Topics { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Type

The type of activity performed.

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

Uri

The uri the activity relates to.

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

Implements

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