@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
52 lines (51 loc) • 1.8 kB
TypeScript
/**
* 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.
*/
/**
*
* @export
* @interface InlineResponse2013IntegrationInformationTenantConfigurations
*/
export interface InlineResponse2013IntegrationInformationTenantConfigurations {
/**
* 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 InlineResponse2013IntegrationInformationTenantConfigurations
*/
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 InlineResponse2013IntegrationInformationTenantConfigurations
*/
tenantConfigurationId?: string;
/**
*
* @type {string}
* @memberof InlineResponse2013IntegrationInformationTenantConfigurations
*/
status?: InlineResponse2013IntegrationInformationTenantConfigurationsStatusEnum;
/**
* Time of request in UTC.
* @type {Date}
* @memberof InlineResponse2013IntegrationInformationTenantConfigurations
*/
submitTimeUtc?: Date;
}
/**
* @export
* @enum {string}
*/
export declare enum InlineResponse2013IntegrationInformationTenantConfigurationsStatusEnum {
LIVE = "LIVE",
INACTIVE = "INACTIVE",
TEST = "TEST"
}