/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { CreateAddressRequest } from './createAddressRequest'; /** Request for updating a card */ export interface UpdateCardRequest { /** Holder name */ holderName: string; /** Expiration month */ expMonth: number; /** Expiration year */ expYear: number; /** Id of the address to be used as billing address */ billingAddressId?: string | null; /** Billing address */ billingAddress: CreateAddressRequest; /** Metadata */ metadata: Record; label: string; } export declare const updateCardRequestSchema: Schema;