setInteractionGoalCompletedOnly method

MessagesRequestBuilder setInteractionGoalCompletedOnly(
  1. bool interactionGoalCompletedOnly
)

Sets the flag to include only messages with completed interaction goals. Android Reference: MessagesRequestBuilder.setInteractionGoalCompletedOnly(bool)

Implementation

MessagesRequestBuilder setInteractionGoalCompletedOnly(
    bool interactionGoalCompletedOnly) {
  this.interactionGoalCompletedOnly = interactionGoalCompletedOnly;
  return this;
}