This interface will show the structure to Card
export interface Card { token: string; full_name: string; number: string; month: number; year: number; last_four_digits: string; first_six_digits: string; card_type: string; payment_method_type: string; address1: string; cvv: string; city: string; state: string; zip: string; country: string; phone_number: string; storage_state: string; erros?: string; created_at: string; updated_at: string;/ }
Generated using TypeDoc
This interface will show the structure to Card