BatchJob::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( $id = null, $status = null, $progressStats = null, $uploadUrl = null, $downloadUrl = null, $processingErrors = null, $diskUsageQuotaBalance = null )
        public function __construct($id = null, $status = null, $progressStats = null, $uploadUrl = null, $downloadUrl = null, $processingErrors = null, $diskUsageQuotaBalance = null)
        {
            $this->id = $id;
            $this->status = $status;
            $this->progressStats = $progressStats;
            $this->uploadUrl = $uploadUrl;
            $this->downloadUrl = $downloadUrl;
            $this->processingErrors = $processingErrors;
            $this->diskUsageQuotaBalance = $diskUsageQuotaBalance;
        }