import SuccessResponse from '../responses/SuccessResponse'; import Response from '../base/Response'; export default class CardResult { status?: string; mask?: string; network?: string; type?: string; bin?: string; last?: string; hash?: string; address?: string; country?: string; state?: string; city?: string; zip?: string; email?: string; phone?: string; static validateResponse(response: Response): boolean; static fromResponse(response: SuccessResponse): CardResult; }