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

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

namespace TwilioRestVerifyV2Service;

use 
TwilioOptions;
use 
TwilioValues;

abstract class 
VerificationCheckOptions {
    
/**
     * @param string $to The phone number or email to verify
     * @param string $verificationSid A SID that uniquely identifies the
     *                                Verification Check
     * @param string $amount The amount of the associated PSD2 compliant
     *                       transaction.
     * @param string $payee The payee of the associated PSD2 compliant transaction
     * @return CreateVerificationCheckOptions Options builder
     */
    
public static function create(string $to Values::NONEstring $verificationSid Values::NONEstring $amount Values::NONEstring $payee Values::NONE): CreateVerificationCheckOptions {
        return new 
CreateVerificationCheckOptions($to$verificationSid$amount$payee);
    }
}

class 
CreateVerificationCheckOptions extends Options {
    
/**
     * @param string $to The phone number or email to verify
     * @param string $verificationSid A SID that uniquely identifies the
     *                                Verification Check
     * @param string $amount The amount of the associated PSD2 compliant
     *                       transaction.
     * @param string $payee The payee of the associated PSD2 compliant transaction
     */
    
public function __construct(string $to Values::NONEstring $verificationSid Values::NONEstring $amount Values::NONEstring $payee Values::NONE) {
        
$this->options['to'] = $to;
        
$this->options['verificationSid'] = $verificationSid;
        
$this->options['amount'] = $amount;
        
$this->options['payee'] = $payee;
    }

    
/**
     * The phone number or [email](https://www.twilio.com/docs/verify/email) to verify. Either this parameter or the `verification_sid` must be specified. Phone numbers must be in [E.164 format](https://www.twilio.com/docs/glossary/what-e164).
     *
     * @param string $to The phone number or email to verify
     * @return $this Fluent Builder
     */
    
public function setTo(string $to): self {
        
$this->options['to'] = $to;
        return 
$this;
    }

    
/**
     * A SID that uniquely identifies the Verification Check. Either this parameter or the `to` phone number/[email](https://www.twilio.com/docs/verify/email) must be specified.
     *
     * @param string $verificationSid A SID that uniquely identifies the
     *                                Verification Check
     * @return $this Fluent Builder
     */
    
public function setVerificationSid(string $verificationSid): self {
        
$this->options['verificationSid'] = $verificationSid;
        return 
$this;
    }

    
/**
     * The amount of the associated PSD2 compliant transaction. Requires the PSD2 Service flag enabled.
     *
     * @param string $amount The amount of the associated PSD2 compliant
     *                       transaction.
     * @return $this Fluent Builder
     */
    
public function setAmount(string $amount): self {
        
$this->options['amount'] = $amount;
        return 
$this;
    }

    
/**
     * The payee of the associated PSD2 compliant transaction. Requires the PSD2 Service flag enabled.
     *
     * @param string $payee The payee of the associated PSD2 compliant transaction
     * @return $this Fluent Builder
     */
    
public function setPayee(string $payee): self {
        
$this->options['payee'] = $payee;
        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.Verify.V2.CreateVerificationCheckOptions ' $options ']';
    }
}
Онлайн: 3
Реклама