-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
github-actions
committed
Apr 4, 2024
1 parent
24752b0
commit 33c930b
Showing
7 changed files
with
166 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 66 additions & 0 deletions
66
src/generated/models/CreateTransactionAuthenticateRequest.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* Passage Management API | ||
* Passage\'s management API to manage your Passage apps and users. | ||
* | ||
* The version of the OpenAPI document: 1 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
import { exists, mapValues } from '../runtime'; | ||
/** | ||
* | ||
* @export | ||
* @interface CreateTransactionAuthenticateRequest | ||
*/ | ||
export interface CreateTransactionAuthenticateRequest { | ||
/** | ||
* the user's unique identifier that will be associated with this transaction | ||
* @type {string} | ||
* @memberof CreateTransactionAuthenticateRequest | ||
*/ | ||
externalId: string; | ||
} | ||
|
||
/** | ||
* Check if a given object implements the CreateTransactionAuthenticateRequest interface. | ||
*/ | ||
export function instanceOfCreateTransactionAuthenticateRequest(value: object): boolean { | ||
let isInstance = true; | ||
isInstance = isInstance && "externalId" in value; | ||
|
||
return isInstance; | ||
} | ||
|
||
export function CreateTransactionAuthenticateRequestFromJSON(json: any): CreateTransactionAuthenticateRequest { | ||
return CreateTransactionAuthenticateRequestFromJSONTyped(json, false); | ||
} | ||
|
||
export function CreateTransactionAuthenticateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTransactionAuthenticateRequest { | ||
if ((json === undefined) || (json === null)) { | ||
return json; | ||
} | ||
return { | ||
|
||
'externalId': json['external_id'], | ||
}; | ||
} | ||
|
||
export function CreateTransactionAuthenticateRequestToJSON(value?: CreateTransactionAuthenticateRequest | null): any { | ||
if (value === undefined) { | ||
return undefined; | ||
} | ||
if (value === null) { | ||
return null; | ||
} | ||
return { | ||
|
||
'external_id': value.externalId, | ||
}; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters