Package com.google.cloud.billing.v1
Interface ListServicesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListServicesResponse
,ListServicesResponse.Builder
public interface ListServicesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
A token to retrieve the next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token to retrieve the next page of results.Service
getServices(int index)
A list of services.int
getServicesCount()
A list of services.List<Service>
getServicesList()
A list of services.ServiceOrBuilder
getServicesOrBuilder(int index)
A list of services.List<? extends ServiceOrBuilder>
getServicesOrBuilderList()
A list of services.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getServicesList
List<Service> getServicesList()
A list of services.
repeated .google.cloud.billing.v1.Service services = 1;
-
getServices
Service getServices(int index)
A list of services.
repeated .google.cloud.billing.v1.Service services = 1;
-
getServicesCount
int getServicesCount()
A list of services.
repeated .google.cloud.billing.v1.Service services = 1;
-
getServicesOrBuilderList
List<? extends ServiceOrBuilder> getServicesOrBuilderList()
A list of services.
repeated .google.cloud.billing.v1.Service services = 1;
-
getServicesOrBuilder
ServiceOrBuilder getServicesOrBuilder(int index)
A list of services.
repeated .google.cloud.billing.v1.Service services = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve the next page of results. To retrieve the next page, call `ListServices` again with the `page_token` field set to this value. This field is empty if there are no more results to retrieve.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token to retrieve the next page of results. To retrieve the next page, call `ListServices` again with the `page_token` field set to this value. This field is empty if there are no more results to retrieve.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-