php/src/OSS/GetBucketWebsiteResponse/websiteConfiguration.php [47:61]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public function toMap()
    {
        $res = [];
        if (null !== $this->indexDocument) {
            $res['IndexDocument'] = null !== $this->indexDocument ? $this->indexDocument->toMap() : null;
        }
        if (null !== $this->errorDocument) {
            $res['ErrorDocument'] = null !== $this->errorDocument ? $this->errorDocument->toMap() : null;
        }
        if (null !== $this->routingRules) {
            $res['RoutingRules'] = null !== $this->routingRules ? $this->routingRules->toMap() : null;
        }

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



php/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration.php [44:58]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public function toMap()
    {
        $res = [];
        if (null !== $this->indexDocument) {
            $res['IndexDocument'] = null !== $this->indexDocument ? $this->indexDocument->toMap() : null;
        }
        if (null !== $this->errorDocument) {
            $res['ErrorDocument'] = null !== $this->errorDocument ? $this->errorDocument->toMap() : null;
        }
        if (null !== $this->routingRules) {
            $res['RoutingRules'] = null !== $this->routingRules ? $this->routingRules->toMap() : null;
        }

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



