Type Alias AuthorizeResult
AuthorizeResult: | { status: "Consented"; customerId: string; error?: undefined } | { status: "Denied"; customerId?: undefined; error?: undefined } | { status?: undefined; customerId?: undefined; error: StripeError<OnrampError>; } Type declaration
- { status: "Consented"; customerId: string; error?: undefined }
status: "Consented"
customerId: string
Optionalerror?: undefined
- { status: "Denied"; customerId?: undefined; error?: undefined }
status: "Denied"
OptionalcustomerId?: undefined
Optionalerror?: undefined
- { status?: undefined; customerId?: undefined; error: StripeError<OnrampError> }
Optionalstatus?: undefined
OptionalcustomerId?: undefined
Result of Link authorization.
Consented: The user consented; includescustomerId.Denied: The user denied authorization.