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

com.aliyun.openservices.log.response.ListShipperMigrationResponse Maven / Gradle / Ivy

There is a newer version: 0.6.115
Show newest version
package com.aliyun.openservices.log.response;

import com.aliyun.openservices.log.common.ShipperMigration;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

public class ListShipperMigrationResponse extends Response {
    protected int count = 0;
    protected int total = 0;

    public int getCount() {
        return count;
    }

    public void setCount(int count) {
        this.count = count;
    }

    public int getTotal() {
        return total;
    }

    public void setTotal(int total) {
        this.total = total;
    }

    public List getMigrations() {
        return migrations;
    }

    public void setMigrations(List migrations) {
        this.migrations = migrations;
    }

    protected List migrations = new ArrayList();

    /**
     * Construct the base response body with http headers
     *
     * @param headers http headers
     */
    public ListShipperMigrationResponse(Map headers, int count, int total, List migrations) {
        super(headers);
        setCount(count);
        setTotal(total);
        this.migrations = migrations;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy