/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetBillingAddressResponse } from './getBillingAddressResponse'; import { GetCustomerResponse } from './getCustomerResponse'; /** Response object for getting a credit card */ export interface GetCardResponse { id?: string | null; lastFourDigits?: string | null; brand?: string | null; holderName?: string | null; expMonth?: number | null; expYear?: number | null; status?: string | null; createdAt?: string | null; updatedAt?: string | null; billingAddress?: GetBillingAddressResponse | null; customer?: GetCustomerResponse | null; metadata?: Record | null; /** Card type */ type?: string | null; /** Document number for the card's holder */ holderDocument?: string | null; deletedAt?: string | null; /** First six digits */ firstSixDigits?: string | null; label?: string | null; } export declare const getCardResponseSchema: Schema;