com.clarifai.grpc.api.MultiScopeUserResponseOrBuilder 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 MultiScopeUserResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.MultiScopeUserResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* The status of the request.
*
*
* .clarifai.api.status.Status status = 1;
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
*
* The status of the request.
*
*
* .clarifai.api.status.Status status = 1;
* @return The status.
*/
com.clarifai.grpc.api.status.Status getStatus();
/**
*
* The status of the request.
*
*
* .clarifai.api.status.Status status = 1;
*/
com.clarifai.grpc.api.status.StatusOrBuilder getStatusOrBuilder();
/**
*
* This is a list of the scopes that your key has.
*
*
* repeated string scopes = 2;
* @return A list containing the scopes.
*/
java.util.List
getScopesList();
/**
*
* This is a list of the scopes that your key has.
*
*
* repeated string scopes = 2;
* @return The count of scopes.
*/
int getScopesCount();
/**
*
* This is a list of the scopes that your key has.
*
*
* repeated string scopes = 2;
* @param index The index of the element to return.
* @return The scopes at the given index.
*/
java.lang.String getScopes(int index);
/**
*
* This is a list of the scopes that your key has.
*
*
* repeated string scopes = 2;
* @param index The index of the value to return.
* @return The bytes of the scopes at the given index.
*/
com.google.protobuf.ByteString
getScopesBytes(int index);
/**
*
* This is a list of endpoint permissions that your key has.
*
*
* repeated string endpoints = 4;
* @return A list containing the endpoints.
*/
java.util.List
getEndpointsList();
/**
*
* This is a list of endpoint permissions that your key has.
*
*
* repeated string endpoints = 4;
* @return The count of endpoints.
*/
int getEndpointsCount();
/**
*
* This is a list of endpoint permissions that your key has.
*
*
* repeated string endpoints = 4;
* @param index The index of the element to return.
* @return The endpoints at the given index.
*/
java.lang.String getEndpoints(int index);
/**
*
* This is a list of endpoint permissions that your key has.
*
*
* repeated string endpoints = 4;
* @param index The index of the value to return.
* @return The bytes of the endpoints at the given index.
*/
com.google.protobuf.ByteString
getEndpointsBytes(int index);
/**
* string user_feature_flags = 5;
* @return The userFeatureFlags.
*/
java.lang.String getUserFeatureFlags();
/**
* string user_feature_flags = 5;
* @return The bytes for userFeatureFlags.
*/
com.google.protobuf.ByteString
getUserFeatureFlagsBytes();
}