Show / Hide Table of Contents

Class PubsubNotificationSettings

Settings for Pub/Sub notifications, all methods require that the caller is a direct user of the merchant center account.

Inheritance
System.Object
PubsubNotificationSettings
Implements
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.ShoppingContent.v2_1.Data
Assembly: Google.Apis.ShoppingContent.v2_1.dll
Syntax
public class PubsubNotificationSettings : IDirectResponseSchema

Properties

CloudTopicName

Cloud pub/sub topic to which notifications are sent (read-only).

Declaration
[JsonProperty("cloudTopicName")]
public virtual string CloudTopicName { 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 "content#pubsubNotificationSettings"

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

RegisteredEvents

List of event types. Acceptable values are: - "orderPendingShipment"

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

Implements

IDirectResponseSchema
In This Article
Back to top