grpc.webhook._WebhookOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-protos Show documentation
Show all versions of client-protos Show documentation
Java protobuf protocols that define the Momento gRPC wire format
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: webhook.proto
package grpc.webhook;
public interface _WebhookOrBuilder extends
// @@protoc_insertion_point(interface_extends:webhook._Webhook)
com.google.protobuf.MessageOrBuilder {
/**
* .webhook._WebhookId webhook_id = 1;
* @return Whether the webhookId field is set.
*/
boolean hasWebhookId();
/**
* .webhook._WebhookId webhook_id = 1;
* @return The webhookId.
*/
grpc.webhook._WebhookId getWebhookId();
/**
* .webhook._WebhookId webhook_id = 1;
*/
grpc.webhook._WebhookIdOrBuilder getWebhookIdOrBuilder();
/**
* string topic_name = 2;
* @return The topicName.
*/
java.lang.String getTopicName();
/**
* string topic_name = 2;
* @return The bytes for topicName.
*/
com.google.protobuf.ByteString
getTopicNameBytes();
/**
* .webhook._WebhookDestination destination = 3;
* @return Whether the destination field is set.
*/
boolean hasDestination();
/**
* .webhook._WebhookDestination destination = 3;
* @return The destination.
*/
grpc.webhook._WebhookDestination getDestination();
/**
* .webhook._WebhookDestination destination = 3;
*/
grpc.webhook._WebhookDestinationOrBuilder getDestinationOrBuilder();
}