/**
 * 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 Notificationsubscriptionsv1webhooksNotificationScope
 */
export interface Notificationsubscriptionsv1webhooksNotificationScope {
    /**
     * The webhook scope. 1. SELF The Webhook is used to deliver webhooks for only this Organization (or Merchant). 2. DESCENDANTS The Webhook is used to deliver webhooks for this Organization and its children. 3. CUSTOM The Webhook is used to deliver webhooks for the OrgIds (or MiDs) explicitly listed in scopeData field
     * @type {string}
     * @memberof Notificationsubscriptionsv1webhooksNotificationScope
     */
    scope?: string;
    /**
     * Applicable only if scope=CUSTOM. This should contains a Set of MIDs or OrgIDs for which this subscription is applicable.
     * @type {Array<string>}
     * @memberof Notificationsubscriptionsv1webhooksNotificationScope
     */
    scopeData?: Array<string>;
}
