setGuid method

ThreadsRequestBuilder setGuid(
  1. String guid
)

Scopes the list to one group's threads. Mutually exclusive with setUid — setting both is a validation error at fetch time.

Implementation

ThreadsRequestBuilder setGuid(String guid) {
  this.guid = guid;
  return this;
}