手動レビュー列挙型を追加互換性に関わる変更
新機能
Adds the following values to the closed_reason enum:
acknowledged
: The review was acknowledged and then closed.payment_
: The review was closed because the payment never settled.never_ settled
この変更により互換性が失われる理由
統合が closed_
列挙型を処理し、以前の値セットのみを期待する場合、この変更により統合型が壊れる可能性があります。
影響
We added these enum values to support manual reviews for Radar on bank debits because the previous set of enum values didn’t account for all states that might occur in asynchronous bank debit flows. You can use the new values for states where:
- The review was acknowledged and then closed (
acknowledged
). - The review was closed because the payment never settled (
payment_
).never_ settled
統合を更新して、closed_
応答を処理するコードがこれらの新しい値を想定するようにします。