Files
Vendaweb-api/src/sales/payment/pix/santander/models/auth-token.model.ts
Felipe Batista 47e7f75720 commit
2025-01-27 17:44:27 -03:00

11 lines
290 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
export interface SantanderPixAuthToken {
    refreshUrl: string;
    token_type: string;
    client_id: string;
    access_token: string;
    refresh_token: string;
    scopes: string;
    expires_in: string;
}