Skip to content

Commit

Permalink
Update webhook-payload.ts to fix missing "I" Rebilld -> RebillId (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPchelintsev authored Aug 27, 2023
1 parent 7f36519 commit fa69766
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/webhook-handler/webhook-payload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface WebhookPayload {
PaymentId: number;
ErrorCode: string;
Amount: number;
Rebilld?: number;
RebillId?: number;
CardId: number;
Pan: string;
ExpDate: string;
Expand All @@ -29,7 +29,7 @@ export const webhookPayloadSchema: Schema = [
type: PropType.IntegerFromString,
},
{
property: 'Rebilld',
property: 'RebillId',
type: PropType.IntegerFromString,
optional: true,
},
Expand Down

0 comments on commit fa69766

Please sign in to comment.