setCreateTime() public method

The date and time of capture, as defined in RFC 3339 Section 5.6.
public setCreateTime ( string $create_time )
$create_time string
Example #1
0
 public static function createCapture()
 {
     $capture = new Capture();
     $capture->setCreateTime(self::$create_time);
     $capture->setId(self::$id);
     $capture->setParentPayment(self::$parent_payment);
     $capture->setState(self::$state);
     return $capture;
 }