UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

53 lines (52 loc) 1.73 kB
/** * OpenPay API * super charge your subscription management. * * The version of the OpenAPI document: 1.2.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { NonPciIntegrationConfigurationInner } from './NonPciIntegrationConfigurationInner'; import type { NonPciIntegrationEnum } from './NonPciIntegrationEnum'; /** * * @export * @interface NonPciIntegration */ export interface NonPciIntegration { /** * The account ID * @type {string} * @memberof NonPciIntegration */ accountId: string; /** * The configuration fields * @type {Array<NonPciIntegrationConfigurationInner>} * @memberof NonPciIntegration */ _configuration?: Array<NonPciIntegrationConfigurationInner>; /** * The integration ID * @type {string} * @memberof NonPciIntegration */ integrationId: string; /** * The integration type * @type {NonPciIntegrationEnum} * @memberof NonPciIntegration */ integrationType: NonPciIntegrationEnum; } /** * Check if a given object implements the NonPciIntegration interface. */ export declare function instanceOfNonPciIntegration(value: object): value is NonPciIntegration; export declare function NonPciIntegrationFromJSON(json: any): NonPciIntegration; export declare function NonPciIntegrationFromJSONTyped(json: any, ignoreDiscriminator: boolean): NonPciIntegration; export declare function NonPciIntegrationToJSON(json: any): NonPciIntegration; export declare function NonPciIntegrationToJSONTyped(value?: NonPciIntegration | null, ignoreDiscriminator?: boolean): any;