main.java.com.streamlayer.pushNotification.common.APNSCredentialsOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sl-protofiles Show documentation
Show all versions of sl-protofiles Show documentation
StreamLayer Java Protofiles
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: streamlayer/pushNotification/pushNotification.common.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.pushNotification.common;
public interface APNSCredentialsOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.pushNotification.APNSCredentials)
com.google.protobuf.MessageLiteOrBuilder {
/**
* .streamlayer.pushNotification.APNSCredentials.APNSCredentialsToken token = 1 [json_name = "token"];
* @return Whether the token field is set.
*/
boolean hasToken();
/**
* .streamlayer.pushNotification.APNSCredentials.APNSCredentialsToken token = 1 [json_name = "token"];
* @return The token.
*/
com.streamlayer.pushNotification.common.APNSCredentials.APNSCredentialsToken getToken();
/**
* bool production = 2 [json_name = "production"];
* @return The production.
*/
boolean getProduction();
/**
* string topic = 3 [json_name = "topic"];
* @return The topic.
*/
java.lang.String getTopic();
/**
* string topic = 3 [json_name = "topic"];
* @return The bytes for topic.
*/
com.google.protobuf.ByteString
getTopicBytes();
}