com.sdcalmes.sleeper.LeagueModels.Transaction Maven / Gradle / Ivy
package com.sdcalmes.sleeper.LeagueModels;
import java.util.List;
import java.util.Map;
public class Transaction {
private TransactionType type;
private String transaction_id;
private long status_updated;
private String status;
private List roster_ids;
private int leg; //week
private Map drops;
private List draft_picks;
private String creator; //user id who initiated
private long created;
private List consenter_ids;
private List waiver_budget;
public TransactionType getType() {
return type;
}
public String getTransaction_id() {
return transaction_id;
}
public long getStatus_updated() {
return status_updated;
}
public String getStatus() {
return status;
}
public List getRoster_ids() {
return roster_ids;
}
public int getLeg() {
return leg;
}
public Map getDrops() {
return drops;
}
public List getDraft_picks() {
return draft_picks;
}
public String getCreator() {
return creator;
}
public long getCreated() {
return created;
}
public List getConsenter_ids() {
return consenter_ids;
}
public List getWaiver_budget() {
return waiver_budget;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy