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

com.volcengine.tos.model.bucket.CommonSourceEndpoint 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;

import java.util.List;

public class CommonSourceEndpoint {
    @JsonProperty("Primary")
    private List primary;
    @JsonProperty("Follower")
    private List follower;

    public List getPrimary() {
        return primary;
    }

    public CommonSourceEndpoint setPrimary(List primary) {
        this.primary = primary;
        return this;
    }

    public List getFollower() {
        return follower;
    }

    public CommonSourceEndpoint setFollower(List follower) {
        this.follower = follower;
        return this;
    }

    @Override
    public String toString() {
        return "CommonSourceEndpoint{" +
                "primary=" + primary +
                ", follower=" + follower +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy