Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/Twilio/Rest/Conversations/V1/Conversation/MessageOptions.php
Строк: 412
<?php

/**
 * This code was generated by
 *  / _    _  _|   _  _
 * | (_)/(_)(_|/| |(/_  v1.0.0
 * /       /
 */

namespace TwilioRestConversationsV1Conversation;

use 
TwilioOptions;
use 
TwilioValues;

/**
 * PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
 */
abstract class MessageOptions {
    
/**
     * @param string $author The channel specific identifier of the message's
     *                       author.
     * @param string $body The content of the message.
     * @param DateTime $dateCreated The date that this resource was created.
     * @param DateTime $dateUpdated The date that this resource was last updated.
     * @param string $attributes A string metadata field you can use to store any
     *                           data you wish.
     * @param string $mediaSid The Media Sid to be attached to the new Message.
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     * @return CreateMessageOptions Options builder
     */
    
public static function create(string $author Values::NONEstring $body Values::NONEDateTime $dateCreated Values::NONEDateTime $dateUpdated Values::NONEstring $attributes Values::NONEstring $mediaSid Values::NONEstring $xTwilioWebhookEnabled Values::NONE): CreateMessageOptions {
        return new 
CreateMessageOptions($author$body$dateCreated$dateUpdated$attributes$mediaSid$xTwilioWebhookEnabled);
    }

    
/**
     * @param string $author The channel specific identifier of the message's
     *                       author.
     * @param string $body The content of the message.
     * @param DateTime $dateCreated The date that this resource was created.
     * @param DateTime $dateUpdated The date that this resource was last updated.
     * @param string $attributes A string metadata field you can use to store any
     *                           data you wish.
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     * @return UpdateMessageOptions Options builder
     */
    
public static function update(string $author Values::NONEstring $body Values::NONEDateTime $dateCreated Values::NONEDateTime $dateUpdated Values::NONEstring $attributes Values::NONEstring $xTwilioWebhookEnabled Values::NONE): UpdateMessageOptions {
        return new 
UpdateMessageOptions($author$body$dateCreated$dateUpdated$attributes$xTwilioWebhookEnabled);
    }

    
/**
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     * @return DeleteMessageOptions Options builder
     */
    
public static function delete(string $xTwilioWebhookEnabled Values::NONE): DeleteMessageOptions {
        return new 
DeleteMessageOptions($xTwilioWebhookEnabled);
    }
}

class 
CreateMessageOptions extends Options {
    
/**
     * @param string $author The channel specific identifier of the message's
     *                       author.
     * @param string $body The content of the message.
     * @param DateTime $dateCreated The date that this resource was created.
     * @param DateTime $dateUpdated The date that this resource was last updated.
     * @param string $attributes A string metadata field you can use to store any
     *                           data you wish.
     * @param string $mediaSid The Media Sid to be attached to the new Message.
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     */
    
public function __construct(string $author Values::NONEstring $body Values::NONEDateTime $dateCreated Values::NONEDateTime $dateUpdated Values::NONEstring $attributes Values::NONEstring $mediaSid Values::NONEstring $xTwilioWebhookEnabled Values::NONE) {
        
$this->options['author'] = $author;
        
$this->options['body'] = $body;
        
$this->options['dateCreated'] = $dateCreated;
        
$this->options['dateUpdated'] = $dateUpdated;
        
$this->options['attributes'] = $attributes;
        
$this->options['mediaSid'] = $mediaSid;
        
$this->options['xTwilioWebhookEnabled'] = $xTwilioWebhookEnabled;
    }

    
/**
     * The channel specific identifier of the message's author. Defaults to `system`.
     *
     * @param string $author The channel specific identifier of the message's
     *                       author.
     * @return $this Fluent Builder
     */
    
public function setAuthor(string $author): self {
        
$this->options['author'] = $author;
        return 
$this;
    }

    
/**
     * The content of the message, can be up to 1,600 characters long.
     *
     * @param string $body The content of the message.
     * @return $this Fluent Builder
     */
    
public function setBody(string $body): self {
        
$this->options['body'] = $body;
        return 
$this;
    }

    
/**
     * The date that this resource was created.
     *
     * @param DateTime $dateCreated The date that this resource was created.
     * @return $this Fluent Builder
     */
    
public function setDateCreated(DateTime $dateCreated): self {
        
$this->options['dateCreated'] = $dateCreated;
        return 
$this;
    }

    
/**
     * The date that this resource was last updated. `null` if the message has not been edited.
     *
     * @param DateTime $dateUpdated The date that this resource was last updated.
     * @return $this Fluent Builder
     */
    
public function setDateUpdated(DateTime $dateUpdated): self {
        
$this->options['dateUpdated'] = $dateUpdated;
        return 
$this;
    }

    
/**
     * A string metadata field you can use to store any data you wish. The string value must contain structurally valid JSON if specified.  **Note** that if the attributes are not set "{}" will be returned.
     *
     * @param string $attributes A string metadata field you can use to store any
     *                           data you wish.
     * @return $this Fluent Builder
     */
    
public function setAttributes(string $attributes): self {
        
$this->options['attributes'] = $attributes;
        return 
$this;
    }

    
/**
     * The Media Sid to be attached to the new Message.
     *
     * @param string $mediaSid The Media Sid to be attached to the new Message.
     * @return $this Fluent Builder
     */
    
public function setMediaSid(string $mediaSid): self {
        
$this->options['mediaSid'] = $mediaSid;
        return 
$this;
    }

    
/**
     * The X-Twilio-Webhook-Enabled HTTP request header
     *
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     * @return $this Fluent Builder
     */
    
public function setXTwilioWebhookEnabled(string $xTwilioWebhookEnabled): self {
        
$this->options['xTwilioWebhookEnabled'] = $xTwilioWebhookEnabled;
        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.Conversations.V1.CreateMessageOptions ' $options ']';
    }
}

class 
UpdateMessageOptions extends Options {
    
/**
     * @param string $author The channel specific identifier of the message's
     *                       author.
     * @param string $body The content of the message.
     * @param DateTime $dateCreated The date that this resource was created.
     * @param DateTime $dateUpdated The date that this resource was last updated.
     * @param string $attributes A string metadata field you can use to store any
     *                           data you wish.
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     */
    
public function __construct(string $author Values::NONEstring $body Values::NONEDateTime $dateCreated Values::NONEDateTime $dateUpdated Values::NONEstring $attributes Values::NONEstring $xTwilioWebhookEnabled Values::NONE) {
        
$this->options['author'] = $author;
        
$this->options['body'] = $body;
        
$this->options['dateCreated'] = $dateCreated;
        
$this->options['dateUpdated'] = $dateUpdated;
        
$this->options['attributes'] = $attributes;
        
$this->options['xTwilioWebhookEnabled'] = $xTwilioWebhookEnabled;
    }

    
/**
     * The channel specific identifier of the message's author. Defaults to `system`.
     *
     * @param string $author The channel specific identifier of the message's
     *                       author.
     * @return $this Fluent Builder
     */
    
public function setAuthor(string $author): self {
        
$this->options['author'] = $author;
        return 
$this;
    }

    
/**
     * The content of the message, can be up to 1,600 characters long.
     *
     * @param string $body The content of the message.
     * @return $this Fluent Builder
     */
    
public function setBody(string $body): self {
        
$this->options['body'] = $body;
        return 
$this;
    }

    
/**
     * The date that this resource was created.
     *
     * @param DateTime $dateCreated The date that this resource was created.
     * @return $this Fluent Builder
     */
    
public function setDateCreated(DateTime $dateCreated): self {
        
$this->options['dateCreated'] = $dateCreated;
        return 
$this;
    }

    
/**
     * The date that this resource was last updated. `null` if the message has not been edited.
     *
     * @param DateTime $dateUpdated The date that this resource was last updated.
     * @return $this Fluent Builder
     */
    
public function setDateUpdated(DateTime $dateUpdated): self {
        
$this->options['dateUpdated'] = $dateUpdated;
        return 
$this;
    }

    
/**
     * A string metadata field you can use to store any data you wish. The string value must contain structurally valid JSON if specified.  **Note** that if the attributes are not set "{}" will be returned.
     *
     * @param string $attributes A string metadata field you can use to store any
     *                           data you wish.
     * @return $this Fluent Builder
     */
    
public function setAttributes(string $attributes): self {
        
$this->options['attributes'] = $attributes;
        return 
$this;
    }

    
/**
     * The X-Twilio-Webhook-Enabled HTTP request header
     *
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     * @return $this Fluent Builder
     */
    
public function setXTwilioWebhookEnabled(string $xTwilioWebhookEnabled): self {
        
$this->options['xTwilioWebhookEnabled'] = $xTwilioWebhookEnabled;
        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.Conversations.V1.UpdateMessageOptions ' $options ']';
    }
}

class 
DeleteMessageOptions extends Options {
    
/**
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     */
    
public function __construct(string $xTwilioWebhookEnabled Values::NONE) {
        
$this->options['xTwilioWebhookEnabled'] = $xTwilioWebhookEnabled;
    }

    
/**
     * The X-Twilio-Webhook-Enabled HTTP request header
     *
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     * @return $this Fluent Builder
     */
    
public function setXTwilioWebhookEnabled(string $xTwilioWebhookEnabled): self {
        
$this->options['xTwilioWebhookEnabled'] = $xTwilioWebhookEnabled;
        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.Conversations.V1.DeleteMessageOptions ' $options ']';
    }
}
Онлайн: 0
Реклама