Skip to content

Commit

Permalink
added param docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Iulian Masar committed May 23, 2024
1 parent 730e4f3 commit 91b4ccd
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion typings/models/card.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export namespace card {
/**
* The cardholder’s name shown on the payment card
*/
CardHolderName: string
CardHolderName: string;
}

interface UpdateCard {
Expand Down
17 changes: 14 additions & 3 deletions typings/models/cardRegistration.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,20 @@ import { entityBase } from "./entityBase";

export namespace cardRegistration {
type UpdateCardRegistration = {
Id: string,
RegistrationData: string,
CardHolderName?: string
/**
* The unique identifier of the Card Registration object.
*/
Id: string;

/**
* The string returned by the tokenization server after the Tokenize the card call is made.
*/
RegistrationData: string;

/**
* The cardholder’s name shown on the payment card
*/
CardHolderName?: string;
}

interface CardRegistrationData extends entityBase.EntityBaseData {
Expand Down

0 comments on commit 91b4ccd

Please sign in to comment.