UNPKG

@paciolan/cybersource-sdk

Version:
59 lines (58 loc) 2.22 kB
/** * CyberSource Merged Spec * All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html * * OpenAPI spec version: 0.0.1 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { Boardingv1registrationsIntegrationInformationTenantInformation } from './boardingv1registrations-integration-information-tenant-information'; /** * * @export * @interface InlineResponse2004IntegrationInformationTenantConfigurations */ export interface InlineResponse2004IntegrationInformationTenantConfigurations { /** * The solutionId is the unique identifier for this system resource. Partner can use it to reference the specific solution through out the system. * @type {string} * @memberof InlineResponse2004IntegrationInformationTenantConfigurations */ solutionId?: string; /** * The tenantConfigurationId is the unique identifier for this system resource. You will see various places where it must be referenced in the URI path, or when querying the hierarchy for ancestors or descendants. * @type {string} * @memberof InlineResponse2004IntegrationInformationTenantConfigurations */ tenantConfigurationId?: string; /** * * @type {string} * @memberof InlineResponse2004IntegrationInformationTenantConfigurations */ status?: InlineResponse2004IntegrationInformationTenantConfigurationsStatusEnum; /** * Time of request in UTC. * @type {Date} * @memberof InlineResponse2004IntegrationInformationTenantConfigurations */ submitTimeUtc?: Date; /** * * @type {Boardingv1registrationsIntegrationInformationTenantInformation} * @memberof InlineResponse2004IntegrationInformationTenantConfigurations */ tenantInformation?: Boardingv1registrationsIntegrationInformationTenantInformation; } /** * @export * @enum {string} */ export declare enum InlineResponse2004IntegrationInformationTenantConfigurationsStatusEnum { LIVE = "LIVE", INACTIVE = "INACTIVE", TEST = "TEST" }