/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Events/V1
Edit: /home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Events/V1/EventTypeOptions.php (1571B)
options['schemaId'] = $schemaId;
}
/**
* A string parameter filtering the results to return only the Event Types using a given schema.
*
* @param string $schemaId A string to filter Event Types by schema.
* @return $this Fluent Builder
*/
public function setSchemaId(string $schemaId): self {
$this->options['schemaId'] = $schemaId;
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.Events.V1.ReadEventTypeOptions ' . $options . ']';
}
}