Skip to content

Code generation: update services and models #1531

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/typings/legalEntityManagement/attachment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class Attachment {
*/
"pageName"?: string;
/**
* Specifies which side of the ID card is uploaded. * When `type` is **driversLicense** or **identityCard**, set this to **front** or **back**. * When omitted, we infer the page number based on the order of attachments.
* Specifies which side of the ID card is uploaded. * If the `type` is **driversLicense** or **identityCard**, you must set this to **front** or **back**. * For any other types, when this is omitted, we infer the page number based on the order of attachments.
*/
"pageType"?: string;

Expand Down
9 changes: 2 additions & 7 deletions src/typings/transferWebhooks/transferDataTracking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,7 @@ export type TransferDataTracking = ConfirmationTrackingData | EstimationTracking
*/
export class TransferDataTrackingClass {

static readonly discriminator: string | undefined = "type";

static readonly mapping: {[index: string]: string} | undefined = {
"confirmation": "ConfirmationTrackingData",
"estimation": "EstimationTrackingData",
"internalReview": "InternalReviewTrackingData",
};
static readonly discriminator: string = "type";

static readonly mapping: {[index: string]: string} | undefined = undefined;
}
Loading