momento.auth._RefreshApiTokenRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-protos-jvm Show documentation
Show all versions of client-protos-jvm Show documentation
Kotlin protobuf protocols for the JVM that define the Momento gRPC wire format
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: auth.proto
package momento.auth;
public interface _RefreshApiTokenRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:auth._RefreshApiTokenRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* the existing api token to be refreshed
*
*
* string api_key = 1;
* @return The apiKey.
*/
java.lang.String getApiKey();
/**
*
* the existing api token to be refreshed
*
*
* string api_key = 1;
* @return The bytes for apiKey.
*/
com.google.protobuf.ByteString
getApiKeyBytes();
/**
*
* the refresh token that was generated with that api token
*
*
* string refresh_token = 2;
* @return The refreshToken.
*/
java.lang.String getRefreshToken();
/**
*
* the refresh token that was generated with that api token
*
*
* string refresh_token = 2;
* @return The bytes for refreshToken.
*/
com.google.protobuf.ByteString
getRefreshTokenBytes();
}