JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbroptions['friendlyName'] = $friendlyName; $this->options['description'] = $description; $this->options['cliVersion'] = $cliVersion; $this->options['validateStatus'] = $validateStatus; $this->options['flexMetadata'] = $flexMetadata; } /** * The Flex Plugin's friendly name. * * @param string $friendlyName The Flex Plugin's friendly name. * @return $this Fluent Builder */ public function setFriendlyName(string $friendlyName): self { $this->options['friendlyName'] = $friendlyName; return $this; } /** * A descriptive string that you create to describe the plugin resource. It can be up to 500 characters long * * @param string $description A descriptive string that you create to describe the plugin resource. It can be up to 500 characters long * @return $this Fluent Builder */ public function setDescription(string $description): self { $this->options['description'] = $description; return $this; } /** * The version of Flex Plugins CLI used to create this plugin * * @param string $cliVersion The version of Flex Plugins CLI used to create this plugin * @return $this Fluent Builder */ public function setCliVersion(string $cliVersion): self { $this->options['cliVersion'] = $cliVersion; return $this; } /** * The validation status of the plugin, indicating whether it has been validated * * @param string $validateStatus The validation status of the plugin, indicating whether it has been validated * @return $this Fluent Builder */ public function setValidateStatus(string $validateStatus): self { $this->options['validateStatus'] = $validateStatus; return $this; } /** * The Flex-Metadata HTTP request header * * @param string $flexMetadata The Flex-Metadata HTTP request header * @return $this Fluent Builder */ public function setFlexMetadata(string $flexMetadata): self { $this->options['flexMetadata'] = $flexMetadata; 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.FlexApi.V1.CreatePluginOptions ' . $options . ']'; } } class FetchPluginOptions extends Options { /** * @param string $flexMetadata The Flex-Metadata HTTP request header */ public function __construct( string $flexMetadata = Values::NONE ) { $this->options['flexMetadata'] = $flexMetadata; } /** * The Flex-Metadata HTTP request header * * @param string $flexMetadata The Flex-Metadata HTTP request header * @return $this Fluent Builder */ public function setFlexMetadata(string $flexMetadata): self { $this->options['flexMetadata'] = $flexMetadata; 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.FlexApi.V1.FetchPluginOptions ' . $options . ']'; } } class ReadPluginOptions extends Options { /** * @param string $flexMetadata The Flex-Metadata HTTP request header */ public function __construct( string $flexMetadata = Values::NONE ) { $this->options['flexMetadata'] = $flexMetadata; } /** * The Flex-Metadata HTTP request header * * @param string $flexMetadata The Flex-Metadata HTTP request header * @return $this Fluent Builder */ public function setFlexMetadata(string $flexMetadata): self { $this->options['flexMetadata'] = $flexMetadata; 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.FlexApi.V1.ReadPluginOptions ' . $options . ']'; } } class UpdatePluginOptions extends Options { /** * @param string $friendlyName The Flex Plugin's friendly name. * @param string $description A descriptive string that you update to describe the plugin resource. It can be up to 500 characters long * @param string $flexMetadata The Flex-Metadata HTTP request header */ public function __construct( string $friendlyName = Values::NONE, string $description = Values::NONE, string $flexMetadata = Values::NONE ) { $this->options['friendlyName'] = $friendlyName; $this->options['description'] = $description; $this->options['flexMetadata'] = $flexMetadata; } /** * The Flex Plugin's friendly name. * * @param string $friendlyName The Flex Plugin's friendly name. * @return $this Fluent Builder */ public function setFriendlyName(string $friendlyName): self { $this->options['friendlyName'] = $friendlyName; return $this; } /** * A descriptive string that you update to describe the plugin resource. It can be up to 500 characters long * * @param string $description A descriptive string that you update to describe the plugin resource. It can be up to 500 characters long * @return $this Fluent Builder */ public function setDescription(string $description): self { $this->options['description'] = $description; return $this; } /** * The Flex-Metadata HTTP request header * * @param string $flexMetadata The Flex-Metadata HTTP request header * @return $this Fluent Builder */ public function setFlexMetadata(string $flexMetadata): self { $this->options['flexMetadata'] = $flexMetadata; 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.FlexApi.V1.UpdatePluginOptions ' . $options . ']'; } }