com.clarifai.grpc.api.ListScopesRequestOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/service.proto
package com.clarifai.grpc.api;
public interface ListScopesRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.ListScopesRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* If "personal_access_token" include scopes and endpoints available to personal access tokens.
* If "app_specific_key" include scopes and endpoints available to app-specific keys. (default)
*
*
* string key_type = 1;
* @return The keyType.
*/
java.lang.String getKeyType();
/**
*
* If "personal_access_token" include scopes and endpoints available to personal access tokens.
* If "app_specific_key" include scopes and endpoints available to app-specific keys. (default)
*
*
* string key_type = 1;
* @return The bytes for keyType.
*/
com.google.protobuf.ByteString
getKeyTypeBytes();
/**
*
* For all user specific information we include user_app_id to get the user_id in a consistent way
*
*
* .clarifai.api.UserAppIDSet user_app_id = 2;
* @return Whether the userAppId field is set.
*/
boolean hasUserAppId();
/**
*
* For all user specific information we include user_app_id to get the user_id in a consistent way
*
*
* .clarifai.api.UserAppIDSet user_app_id = 2;
* @return The userAppId.
*/
com.clarifai.grpc.api.UserAppIDSet getUserAppId();
/**
*
* For all user specific information we include user_app_id to get the user_id in a consistent way
*
*
* .clarifai.api.UserAppIDSet user_app_id = 2;
*/
com.clarifai.grpc.api.UserAppIDSetOrBuilder getUserAppIdOrBuilder();
}