php/src/OSS/CopyObjectResponse/copyObjectResult.php [33:44]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public function toMap()
    {
        $res = [];
        if (null !== $this->lastModified) {
            $res['LastModified'] = $this->lastModified;
        }
        if (null !== $this->eTag) {
            $res['ETag'] = $this->eTag;
        }

        return $res;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



php/src/OSS/UploadPartCopyResponse/copyPartResult.php [33:44]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public function toMap()
    {
        $res = [];
        if (null !== $this->lastModified) {
            $res['LastModified'] = $this->lastModified;
        }
        if (null !== $this->eTag) {
            $res['ETag'] = $this->eTag;
        }

        return $res;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



