/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Oauth/V1
Edit: /home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Oauth/V1/DeviceCodeOptions.php (1424B)
options['audiences'] = $audiences;
}
/**
* An array of intended audiences for token requests
*
* @param string[] $audiences An array of intended audiences
* @return $this Fluent Builder
*/
public function setAudiences(array $audiences): self {
$this->options['audiences'] = $audiences;
return $this;
}
/**
* Provide a friendly representation
*
* @return string Machine friendly representation
*/
public function __toString(): string {
$options = \http_build_query(Values::of($this->options), '', ' ');
return '[Twilio.Oauth.V1.CreateDeviceCodeOptions ' . $options . ']';
}
}