UNPKG

@paciolan/cybersource-sdk

Version:
44 lines (43 loc) 1.65 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 { Notificationsubscriptionsv1webhooksSecurityPolicy1ConfigAdditionalConfig } from './notificationsubscriptionsv1webhooks-security-policy1-config-additional-config'; /** * Optional configuration object for if your API or server requires oAuth for an incoming webhook. * @export * @interface Notificationsubscriptionsv1webhooksSecurityPolicy1Config */ export interface Notificationsubscriptionsv1webhooksSecurityPolicy1Config { /** * Token expiration for the oAuth server. * @type {string} * @memberof Notificationsubscriptionsv1webhooksSecurityPolicy1Config */ oAuthTokenExpiry?: string; /** * Client direct endpoint to the oAuth server. * @type {string} * @memberof Notificationsubscriptionsv1webhooksSecurityPolicy1Config */ oAuthURL?: string; /** * Token type for the oAuth config. * @type {string} * @memberof Notificationsubscriptionsv1webhooksSecurityPolicy1Config */ oAuthTokenType?: string; /** * * @type {Notificationsubscriptionsv1webhooksSecurityPolicy1ConfigAdditionalConfig} * @memberof Notificationsubscriptionsv1webhooksSecurityPolicy1Config */ additionalConfig?: Notificationsubscriptionsv1webhooksSecurityPolicy1ConfigAdditionalConfig; }