UNPKG

wallee

Version:
64 lines (63 loc) 2.66 kB
/** * * @export * @interface TransactionClientPlatformInformation */ export interface TransactionClientPlatformInformation { /** * The ID of the space this object belongs to. * @type {number} * @memberof TransactionClientPlatformInformation */ readonly spaceId?: number; /** * The type of integration that was used to collect the payment information. * @type {string} * @memberof TransactionClientPlatformInformation */ readonly integrationType?: string; /** * The version of the operating system that was used to collect the payment information. * @type {string} * @memberof TransactionClientPlatformInformation */ readonly osVersion?: string; /** * The type of platform that was used to collect the payment information, e.g. Android or iOS. * @type {string} * @memberof TransactionClientPlatformInformation */ readonly platformType?: string; /** * The type of the SDK that was used to collect the payment information. * @type {string} * @memberof TransactionClientPlatformInformation */ readonly sdkVersion?: string; /** * A unique identifier for the object. * @type {number} * @memberof TransactionClientPlatformInformation */ readonly id?: number; /** * The version is used for optimistic locking and incremented whenever the object is updated. * @type {number} * @memberof TransactionClientPlatformInformation */ readonly version?: number; /** * The transaction that is associated with the client platform information. * @type {number} * @memberof TransactionClientPlatformInformation */ readonly transaction?: number; } /** * Check if a given object implements the TransactionClientPlatformInformation interface. */ export declare function instanceOfTransactionClientPlatformInformation(value: object): value is TransactionClientPlatformInformation; export declare function TransactionClientPlatformInformationFromJSON(json: any): TransactionClientPlatformInformation; export declare function TransactionClientPlatformInformationFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionClientPlatformInformation; export declare function TransactionClientPlatformInformationToJSON(json: any): TransactionClientPlatformInformation; export declare function TransactionClientPlatformInformationToJSONTyped(value?: Omit<TransactionClientPlatformInformation, 'spaceId' | 'integrationType' | 'osVersion' | 'platformType' | 'sdkVersion' | 'id' | 'version' | 'transaction'> | null, ignoreDiscriminator?: boolean): any;