n8n-nodes-base
Version:
Base nodes of n8n
26 lines (22 loc) • 520 B
text/typescript
/**
* Stripe Node - Version 1
* Discriminator: resource=source, operation=get
*/
interface Credentials {
stripeApi: CredentialReference;
}
/** Get a balance */
export type StripeV1SourceGetParams = {
resource: 'source';
operation: 'get';
/**
* ID of the source to retrieve
*/
sourceId?: string | Expression<string> | PlaceholderValue;
};
export type StripeV1SourceGetNode = {
type: 'n8n-nodes-base.stripe';
version: 1;
credentials?: Credentials;
config: NodeConfig<StripeV1SourceGetParams>;
};