com.aliyun.openservices.log.response.ListShipperResponse Maven / Gradle / Ivy
package com.aliyun.openservices.log.response;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
public class ListShipperResponse extends Response {
/**
*
*/
private static final long serialVersionUID = 7254330345146275069L;
private int mCount = 0;
private int mTotal = 0;
private List mShippers = new ArrayList();
public ListShipperResponse(Map headers, int count,
int total, List shippers) {
super(headers);
mCount = count;
mTotal = total;
mShippers = new ArrayList(shippers);
}
public int GetCount() {
return mCount;
}
public int GetTotal() {
return mTotal;
}
public List GetShippers() {
return new ArrayList(mShippers);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy