Skip to content

Commit 56ffd6e

Browse files
feat(api): Add tags field to card transactions
1 parent 0a384b1 commit 56ffd6e

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 176
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-11ebfaf7523a8c0eafca9e2c914e44102537634be4b22289fe85d46b9ab3d650.yml
3-
openapi_spec_hash: 38fdabb7812d528c839eadad87d49e5a
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-1307147a7305d37c3eb288d87350e35d946c27e6b40dc8c6a00967d806dbade5.yml
3+
openapi_spec_hash: 21c48156c56569871d503df54e2e1442
44
config_hash: 31d71922d7838f34ae0875c9b8026d99

src/resources/transactions/transactions.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,12 @@ export interface Transaction {
429429
*/
430430
status: 'DECLINED' | 'EXPIRED' | 'PENDING' | 'SETTLED' | 'VOIDED';
431431

432+
/**
433+
* Key-value pairs for tagging resources. Tags allow you to associate arbitrary
434+
* metadata with a resource for your own purposes.
435+
*/
436+
tags: { [key: string]: string };
437+
432438
token_info: TokenInfo | null;
433439

434440
/**

0 commit comments

Comments
 (0)