UNPKG

signicat-client-ts

Version:

Community TypeScript client for Signicat Authentication REST API with automatic token management

14 lines (13 loc) 265 B
/** * Payment attribute information. */ export type PaymentAttribute = { /** * Gets or sets name of the payment attribute */ name?: string | null; /** * Gets or sets value of the payment attribute. */ value?: string | null; };