com.clarifai.grpc.api.MultiCollaboratorsResponseOrBuilder 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 MultiCollaboratorsResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.MultiCollaboratorsResponse)
com.google.protobuf.MessageOrBuilder {
/**
* .clarifai.api.status.Status status = 1;
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
* .clarifai.api.status.Status status = 1;
* @return The status.
*/
com.clarifai.grpc.api.status.Status getStatus();
/**
* .clarifai.api.status.Status status = 1;
*/
com.clarifai.grpc.api.status.StatusOrBuilder getStatusOrBuilder();
/**
* repeated .clarifai.api.Collaborator collaborators = 2 [(.clarifai.api.utils.cl_show_if_empty) = true];
*/
java.util.List
getCollaboratorsList();
/**
* repeated .clarifai.api.Collaborator collaborators = 2 [(.clarifai.api.utils.cl_show_if_empty) = true];
*/
com.clarifai.grpc.api.Collaborator getCollaborators(int index);
/**
* repeated .clarifai.api.Collaborator collaborators = 2 [(.clarifai.api.utils.cl_show_if_empty) = true];
*/
int getCollaboratorsCount();
/**
* repeated .clarifai.api.Collaborator collaborators = 2 [(.clarifai.api.utils.cl_show_if_empty) = true];
*/
java.util.List extends com.clarifai.grpc.api.CollaboratorOrBuilder>
getCollaboratorsOrBuilderList();
/**
* repeated .clarifai.api.Collaborator collaborators = 2 [(.clarifai.api.utils.cl_show_if_empty) = true];
*/
com.clarifai.grpc.api.CollaboratorOrBuilder getCollaboratorsOrBuilder(
int index);
/**
*
* The owner of the application.
* When listing users that have access to the application, i.e. collaborators,
* it is often relevant to also include the application owner, so return
* their information here for convenience.
* Note: app_owner is only returned by ListCollaborators and only if the
* owner is a regular user, not an organization.
*
*
* .clarifai.api.User app_owner = 3;
* @return Whether the appOwner field is set.
*/
boolean hasAppOwner();
/**
*
* The owner of the application.
* When listing users that have access to the application, i.e. collaborators,
* it is often relevant to also include the application owner, so return
* their information here for convenience.
* Note: app_owner is only returned by ListCollaborators and only if the
* owner is a regular user, not an organization.
*
*
* .clarifai.api.User app_owner = 3;
* @return The appOwner.
*/
com.clarifai.grpc.api.User getAppOwner();
/**
*
* The owner of the application.
* When listing users that have access to the application, i.e. collaborators,
* it is often relevant to also include the application owner, so return
* their information here for convenience.
* Note: app_owner is only returned by ListCollaborators and only if the
* owner is a regular user, not an organization.
*
*
* .clarifai.api.User app_owner = 3;
*/
com.clarifai.grpc.api.UserOrBuilder getAppOwnerOrBuilder();
}