All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.volcengine.tos.model.bucket.PrivateSource Maven / Gradle / Ivy

There is a newer version: 2.8.3
Show newest version
package com.volcengine.tos.model.bucket;

import com.fasterxml.jackson.annotation.JsonProperty;

public class PrivateSource {
    @JsonProperty("SourceEndpoint")
    private CommonSourceEndpoint sourceEndpoint;

    public CommonSourceEndpoint getSourceEndpoint() {
        return sourceEndpoint;
    }

    public PrivateSource setSourceEndpoint(CommonSourceEndpoint sourceEndpoint) {
        this.sourceEndpoint = sourceEndpoint;
        return this;
    }

    @Override
    public String toString() {
        return "PrivateSource{" +
                "sourceEndpoint=" + sourceEndpoint +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy