setUpdateTime() public method

Time that the resource was last updated.
public setUpdateTime ( string $update_time )
$update_time string
 public function setup()
 {
     $authorization = new Authorization();
     $authorization->setCreateTime(self::$create_time);
     $authorization->setUpdateTime(self::$update_time);
     $authorization->setId(self::$id);
     $authorization->setState(self::$state);
     $authorization->setParentPayment(self::$parent_payment);
     $authorization->setValidUntil(self::$valid_until);
     $this->authorizations['partial'] = $authorization;
     $this->authorizations['full'] = self::createAuthorization();
 }