|
| 1 | +package client.domain.response.chain.transaction; |
| 2 | + |
| 3 | +import client.domain.common.transaction.PackedTransaction; |
| 4 | + |
| 5 | + |
| 6 | +import java.util.List; |
| 7 | +import java.util.Objects; |
| 8 | + |
| 9 | +public class ScheduledTransaction { |
| 10 | + |
| 11 | + private String trx_id; |
| 12 | + |
| 13 | + private String sender; |
| 14 | + |
| 15 | + private String sender_id; |
| 16 | + |
| 17 | + private String payer; |
| 18 | + |
| 19 | + private String delay_until; |
| 20 | + |
| 21 | + private String expiration; |
| 22 | + |
| 23 | + private String published; |
| 24 | + |
| 25 | + private PackedTransaction transaction; |
| 26 | + |
| 27 | + public String getTrx_id() { |
| 28 | + return trx_id; |
| 29 | + } |
| 30 | + |
| 31 | + public void setTrx_id(String trx_id) { |
| 32 | + this.trx_id = trx_id; |
| 33 | + } |
| 34 | + |
| 35 | + public String getSender() { |
| 36 | + return sender; |
| 37 | + } |
| 38 | + |
| 39 | + public void setSender(String sender) { |
| 40 | + this.sender = sender; |
| 41 | + } |
| 42 | + |
| 43 | + public String getSender_id() { |
| 44 | + return sender_id; |
| 45 | + } |
| 46 | + |
| 47 | + public void setSender_id(String sender_id) { |
| 48 | + this.sender_id = sender_id; |
| 49 | + } |
| 50 | + |
| 51 | + public String getPayer() { |
| 52 | + return payer; |
| 53 | + } |
| 54 | + |
| 55 | + public void setPayer(String payer) { |
| 56 | + this.payer = payer; |
| 57 | + } |
| 58 | + |
| 59 | + public String getDelay_until() { |
| 60 | + return delay_until; |
| 61 | + } |
| 62 | + |
| 63 | + public void setDelay_until(String delay_until) { |
| 64 | + this.delay_until = delay_until; |
| 65 | + } |
| 66 | + |
| 67 | + public String getExpiration() { |
| 68 | + return expiration; |
| 69 | + } |
| 70 | + |
| 71 | + public void setExpiration(String expiration) { |
| 72 | + this.expiration = expiration; |
| 73 | + } |
| 74 | + |
| 75 | + public String getPublished() { |
| 76 | + return published; |
| 77 | + } |
| 78 | + |
| 79 | + public void setPublished(String published) { |
| 80 | + this.published = published; |
| 81 | + } |
| 82 | + |
| 83 | + public PackedTransaction getTransaction() { |
| 84 | + return transaction; |
| 85 | + } |
| 86 | + |
| 87 | + public void setTransaction(PackedTransaction transaction) { |
| 88 | + this.transaction = transaction; |
| 89 | + } |
| 90 | +} |
0 commit comments