src/OSS/Model/ObjectInfo.php [53:98]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public function getLastModified()
    {
        return $this->lastModified;
    }

    /**
     * @return string
     */
    public function getETag()
    {
        return $this->eTag;
    }

    /**
     * @return string
     */
    public function getType()
    {
        return $this->type;
    }
    
    /**
     * php7 && 64bit can use it
     * @return int
     */
    public function getSize()
    {
        return (int)$this->size;
    }
    
    
    /**
     * php5.x or 32bit must use it
     * @return string
     */
    public function getSizeStr()
    {
        return $this->size;
    }
    
    /**
     * @return string
     */
    public function getStorageClass()
    {
        return $this->storageClass;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/OSS/Model/ObjectVersionInfo.php [61:106]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public function getLastModified()
    {
        return $this->lastModified;
    }

    /**
     * @return string
     */
    public function getETag()
    {
        return $this->eTag;
    }

    /**
     * @return string
     */
    public function getType()
    {
        return $this->type;
    }
	
	/**
	 * php7 && 64bit can use it
	 * @return int
	 */
	public function getSize()
	{
		return (int)$this->size;
	}
	
	
	/**
	 * php5.x or 32bit must use it
	 * @return string
	 */
	public function getSizeStr()
	{
		return $this->size;
	}

    /**
     * @return string
     */
    public function getStorageClass()
    {
        return $this->storageClass;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



