Class TicketingListCommentsRequestBuilder
- java.lang.Object
-
- com.stackone.stackone_client_java.models.operations.TicketingListCommentsRequestBuilder
-
public class TicketingListCommentsRequestBuilder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description TicketingListCommentsRequestBuilder(SDKConfiguration sdkConfiguration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TicketingListCommentsResponsecall()java.lang.Iterable<TicketingListCommentsResponse>callAsIterable()Returns an iterable that performs next page calls till no more pages are returned.java.util.stream.Stream<TicketingListCommentsResponse>callAsStream()Returns a stream that performs next page calls till no more pages are returned.TicketingListCommentsRequestBuilderrequest(TicketingListCommentsRequest request)TicketingListCommentsRequestBuilderretryConfig(RetryConfig retryConfig)TicketingListCommentsRequestBuilderretryConfig(java.util.Optional<RetryConfig> retryConfig)
-
-
-
Constructor Detail
-
TicketingListCommentsRequestBuilder
public TicketingListCommentsRequestBuilder(SDKConfiguration sdkConfiguration)
-
-
Method Detail
-
request
public TicketingListCommentsRequestBuilder request(TicketingListCommentsRequest request)
-
retryConfig
public TicketingListCommentsRequestBuilder retryConfig(RetryConfig retryConfig)
-
retryConfig
public TicketingListCommentsRequestBuilder retryConfig(java.util.Optional<RetryConfig> retryConfig)
-
call
public TicketingListCommentsResponse call() throws java.lang.Exception
- Throws:
java.lang.Exception
-
callAsIterable
public java.lang.Iterable<TicketingListCommentsResponse> callAsIterable()
Returns an iterable that performs next page calls till no more pages are returned.The returned iterable can be used in a for-each loop:
for (TicketingListCommentsResponse page : builder.callAsIterable()) { // Process each page }- Returns:
- An iterable that can be used to iterate through all pages
-
callAsStream
public java.util.stream.Stream<TicketingListCommentsResponse> callAsStream()
Returns a stream that performs next page calls till no more pages are returned.
-
-