Show / Hide Table of Contents

Class CreateSubscriberPayload

Payload for creating a subscriber.

Inheritance
object
CreateSubscriberPayload
Implements
IMessage<CreateSubscriberPayload>
IEquatable<CreateSubscriberPayload>
IDeepCloneable<CreateSubscriberPayload>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.DevicesAndServices.Health.V4
Assembly: Google.DevicesAndServices.Health.V4.dll
Syntax
public sealed class CreateSubscriberPayload : IMessage<CreateSubscriberPayload>, IEquatable<CreateSubscriberPayload>, IDeepCloneable<CreateSubscriberPayload>, IBufferMessage, IMessage

Constructors

CreateSubscriberPayload()

Declaration
public CreateSubscriberPayload()

CreateSubscriberPayload(CreateSubscriberPayload)

Declaration
public CreateSubscriberPayload(CreateSubscriberPayload other)
Parameters
Type Name Description
CreateSubscriberPayload other

Properties

EndpointAuthorization

Required. Authorization mechanism for the subscriber endpoint. The secret within this message is crucial for endpoint verification and for securing webhook notifications.

Declaration
public EndpointAuthorization EndpointAuthorization { get; set; }
Property Value
Type Description
EndpointAuthorization

EndpointUri

Required. The full HTTPS URI where update notifications will be sent. The URI must be a valid URL and use HTTPS as the scheme. This endpoint will be verified during the CreateSubscriber call. See CreateSubscriber RPC documentation for verification details.

Declaration
public string EndpointUri { get; set; }
Property Value
Type Description
string

SubscriberConfigs

Optional. Configuration for the subscriber.

Declaration
public RepeatedField<SubscriberConfig> SubscriberConfigs { get; }
Property Value
Type Description
RepeatedField<SubscriberConfig>
In this article
Back to top Generated by DocFX