Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/Twilio/Rest/Preview/Sync/Service/DocumentOptions.php
Строк: 197
<?php

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

namespace TwilioRestPreviewSyncService;

use 
TwilioOptions;
use 
TwilioValues;

/**
 * PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
 */
abstract class DocumentOptions {
    
/**
     * @param string $ifMatch The If-Match HTTP request header
     * @return DeleteDocumentOptions Options builder
     */
    
public static function delete(string $ifMatch Values::NONE): DeleteDocumentOptions {
        return new 
DeleteDocumentOptions($ifMatch);
    }

    
/**
     * @param string $uniqueName The unique_name
     * @param array $data The data
     * @return CreateDocumentOptions Options builder
     */
    
public static function create(string $uniqueName Values::NONE, array $data Values::ARRAY_NONE): CreateDocumentOptions {
        return new 
CreateDocumentOptions($uniqueName$data);
    }

    
/**
     * @param string $ifMatch The If-Match HTTP request header
     * @return UpdateDocumentOptions Options builder
     */
    
public static function update(string $ifMatch Values::NONE): UpdateDocumentOptions {
        return new 
UpdateDocumentOptions($ifMatch);
    }
}

class 
DeleteDocumentOptions extends Options {
    
/**
     * @param string $ifMatch The If-Match HTTP request header
     */
    
public function __construct(string $ifMatch Values::NONE) {
        
$this->options['ifMatch'] = $ifMatch;
    }

    
/**
     * The If-Match HTTP request header
     *
     * @param string $ifMatch The If-Match HTTP request header
     * @return $this Fluent Builder
     */
    
public function setIfMatch(string $ifMatch): self {
        
$this->options['ifMatch'] = $ifMatch;
        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.Preview.Sync.DeleteDocumentOptions ' $options ']';
    }
}

class 
CreateDocumentOptions extends Options {
    
/**
     * @param string $uniqueName The unique_name
     * @param array $data The data
     */
    
public function __construct(string $uniqueName Values::NONE, array $data Values::ARRAY_NONE) {
        
$this->options['uniqueName'] = $uniqueName;
        
$this->options['data'] = $data;
    }

    
/**
     * The unique_name
     *
     * @param string $uniqueName The unique_name
     * @return $this Fluent Builder
     */
    
public function setUniqueName(string $uniqueName): self {
        
$this->options['uniqueName'] = $uniqueName;
        return 
$this;
    }

    
/**
     * The data
     *
     * @param array $data The data
     * @return $this Fluent Builder
     */
    
public function setData(array $data): self {
        
$this->options['data'] = $data;
        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.Preview.Sync.CreateDocumentOptions ' $options ']';
    }
}

class 
UpdateDocumentOptions extends Options {
    
/**
     * @param string $ifMatch The If-Match HTTP request header
     */
    
public function __construct(string $ifMatch Values::NONE) {
        
$this->options['ifMatch'] = $ifMatch;
    }

    
/**
     * The If-Match HTTP request header
     *
     * @param string $ifMatch The If-Match HTTP request header
     * @return $this Fluent Builder
     */
    
public function setIfMatch(string $ifMatch): self {
        
$this->options['ifMatch'] = $ifMatch;
        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.Preview.Sync.UpdateDocumentOptions ' $options ']';
    }
}
Онлайн: 2
Реклама