
com.clarifai.grpc.api.ListWorkflowsRequestOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/service.proto
package com.clarifai.grpc.api;
public interface ListWorkflowsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.ListWorkflowsRequest)
com.google.protobuf.MessageOrBuilder {
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return Whether the userAppId field is set.
*/
boolean hasUserAppId();
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return The userAppId.
*/
com.clarifai.grpc.api.UserAppIDSet getUserAppId();
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
com.clarifai.grpc.api.UserAppIDSetOrBuilder getUserAppIdOrBuilder();
/**
*
* (optional URL parameter) The page number. Pagination is used to split the results into chunks.
* Defaults to 1.
*
*
* uint32 page = 2;
* @return The page.
*/
int getPage();
/**
*
* (optional URL parameter) The number of results that will be contained in each page. Defaults
* to 128.
*
*
* uint32 per_page = 3;
* @return The perPage.
*/
int getPerPage();
/**
*
* Sorting options:
* Whether to sort in ascending order. If false, will order in descending order.
*
*
* bool sort_ascending = 5;
* @return The sortAscending.
*/
boolean getSortAscending();
/**
*
* Whether to order by the name
*
*
* bool sort_by_id = 6;
* @return The sortById.
*/
boolean getSortById();
/**
*
* Whether to order by the modified_at time.
* If neither sort option is set to true, will sort by modified_at.
*
*
* bool sort_by_modified_at = 7;
* @return The sortByModifiedAt.
*/
boolean getSortByModifiedAt();
/**
*
* Query various text fields that can contain the words in the query string.
*
*
* string query = 8;
* @return The query.
*/
java.lang.String getQuery();
/**
*
* Query various text fields that can contain the words in the query string.
*
*
* string query = 8;
* @return The bytes for query.
*/
com.google.protobuf.ByteString
getQueryBytes();
/**
*
* Filter by the id of the workflow. This supports wilcard queries like "gen*" to match "general" as an example.
* Deprecated in favor of query
*
*
* string id = 4 [deprecated = true];
* @return The id.
*/
@java.lang.Deprecated java.lang.String getId();
/**
*
* Filter by the id of the workflow. This supports wilcard queries like "gen*" to match "general" as an example.
* Deprecated in favor of query
*
*
* string id = 4 [deprecated = true];
* @return The bytes for id.
*/
@java.lang.Deprecated com.google.protobuf.ByteString
getIdBytes();
/**
*
* If true, we only return workflows that are handpicked by clarifai staff
*
*
* bool featured_only = 9;
* @return The featuredOnly.
*/
boolean getFeaturedOnly();
/**
*
* If true, we only return workflows that are starred by the requesting user
*
*
* bool starred_only = 11;
* @return The starredOnly.
*/
boolean getStarredOnly();
/**
*
* (optional URL parameter) List of additional fields to be included in the response. Currently supported: all, stars
*
*
* repeated string additional_fields = 10;
* @return A list containing the additionalFields.
*/
java.util.List
getAdditionalFieldsList();
/**
*
* (optional URL parameter) List of additional fields to be included in the response. Currently supported: all, stars
*
*
* repeated string additional_fields = 10;
* @return The count of additionalFields.
*/
int getAdditionalFieldsCount();
/**
*
* (optional URL parameter) List of additional fields to be included in the response. Currently supported: all, stars
*
*
* repeated string additional_fields = 10;
* @param index The index of the element to return.
* @return The additionalFields at the given index.
*/
java.lang.String getAdditionalFields(int index);
/**
*
* (optional URL parameter) List of additional fields to be included in the response. Currently supported: all, stars
*
*
* repeated string additional_fields = 10;
* @param index The index of the value to return.
* @return The bytes of the additionalFields at the given index.
*/
com.google.protobuf.ByteString
getAdditionalFieldsBytes(int index);
public com.clarifai.grpc.api.ListWorkflowsRequest.SortByCase getSortByCase();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy