We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56c8066 commit 4e7c145Copy full SHA for 4e7c145
src/service/bill_service.rs
@@ -3100,6 +3100,7 @@ pub struct LightBitcreditBillToReturn {
3100
pub drawer: LightIdentityPublicData,
3101
pub payee: LightIdentityPublicData,
3102
pub endorsee: Option<LightIdentityPublicData>,
3103
+ pub active_notification: Option<Notification>,
3104
pub sum: String,
3105
pub currency: String,
3106
pub issue_date: String,
@@ -3113,6 +3114,7 @@ impl From<BitcreditBillToReturn> for LightBitcreditBillToReturn {
3113
3114
drawer: value.drawer.into(),
3115
payee: value.payee.into(),
3116
endorsee: value.endorsee.map(|v| v.into()),
3117
+ active_notification: value.active_notification,
3118
sum: value.sum,
3119
currency: value.currency,
3120
issue_date: value.issue_date,
0 commit comments