Skip to content

Commit 4e7c145

Browse files
authored
Add active bill to light invoice endpoints (#370)
1 parent 56c8066 commit 4e7c145

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/service/bill_service.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3100,6 +3100,7 @@ pub struct LightBitcreditBillToReturn {
31003100
pub drawer: LightIdentityPublicData,
31013101
pub payee: LightIdentityPublicData,
31023102
pub endorsee: Option<LightIdentityPublicData>,
3103+
pub active_notification: Option<Notification>,
31033104
pub sum: String,
31043105
pub currency: String,
31053106
pub issue_date: String,
@@ -3113,6 +3114,7 @@ impl From<BitcreditBillToReturn> for LightBitcreditBillToReturn {
31133114
drawer: value.drawer.into(),
31143115
payee: value.payee.into(),
31153116
endorsee: value.endorsee.map(|v| v.into()),
3117+
active_notification: value.active_notification,
31163118
sum: value.sum,
31173119
currency: value.currency,
31183120
issue_date: value.issue_date,

0 commit comments

Comments
 (0)