Method
batch_preview
(
self,
account: AccountRecord,
session: AccountSessionState,
invitation_code: str,
)
Source from the content-addressed store, hash-verified
| 36 | return self._request(account, session, "GET", "/biz/customer/getCustomerInfo") |
| 37 | |
| 38 | def batch_preview( |
| 39 | self, |
| 40 | account: AccountRecord, |
| 41 | session: AccountSessionState, |
| 42 | invitation_code: str, |
| 43 | ) -> ApiCallResult: |
| 44 | return self._request( |
| 45 | account, |
| 46 | session, |
| 47 | "POST", |
| 48 | "/biz/pay/batch-preview", |
| 49 | json_body={"invitationCode": invitation_code}, |
| 50 | ) |
| 51 | |
| 52 | def preview_payment( |
| 53 | self, |
Tested by
no test coverage detected