/**
 *
 * @export
 * @interface PaymentAppConnectorDetailsCreate
 */
export interface PaymentAppConnectorDetailsCreate {
    /**
     * A client-generated nonce which uniquely identifies some action to be executed. Subsequent requests with the same external ID do not execute the action again, but return the original result.
     * @type {string}
     * @memberof PaymentAppConnectorDetailsCreate
     */
    externalId?: string;
}
/**
 * Check if a given object implements the PaymentAppConnectorDetailsCreate interface.
 */
export declare function instanceOfPaymentAppConnectorDetailsCreate(value: object): value is PaymentAppConnectorDetailsCreate;
export declare function PaymentAppConnectorDetailsCreateFromJSON(json: any): PaymentAppConnectorDetailsCreate;
export declare function PaymentAppConnectorDetailsCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentAppConnectorDetailsCreate;
export declare function PaymentAppConnectorDetailsCreateToJSON(json: any): PaymentAppConnectorDetailsCreate;
export declare function PaymentAppConnectorDetailsCreateToJSONTyped(value?: PaymentAppConnectorDetailsCreate | null, ignoreDiscriminator?: boolean): any;
