PayPal\Api\Authorization::setCreateTime PHP 메소드

setCreateTime() 공개 메소드

Time of authorization as defined in RFC 3339 Section 5.6.
public setCreateTime ( string $create_time )
$create_time string
    public function setCreateTime($create_time)
    {
        $this->create_time = $create_time;
        return $this;
    }

Usage Example

예제 #1
0
 public function setup()
 {
     $authorization = new Authorization();
     $authorization->setCreateTime(self::$create_time);
     $authorization->setId(self::$id);
     $authorization->setState(self::$state);
     $authorization->setParentPayment(self::$parent_payment);
     $this->authorizations['partial'] = $authorization;
     $this->authorizations['full'] = self::createAuthorization();
 }
All Usage Examples Of PayPal\Api\Authorization::setCreateTime