n8n-nodes-iyzico-unofficial
Version:
N8N community node for Iyzico payment system integration
19 lines (18 loc) • 730 B
TypeScript
import { IAuthenticateGeneric, ICredentialDataDecryptedObject, ICredentialTestRequest, ICredentialType, IHttpRequestHelper, INodeProperties } from 'n8n-workflow';
export declare class IyzicoApi implements ICredentialType {
name: string;
displayName: string;
documentationUrl: string;
properties: INodeProperties[];
authenticate: IAuthenticateGeneric;
methods: {
credentialTest: {
iyzicoApiTest(this: IHttpRequestHelper, credential: ICredentialDataDecryptedObject): Promise<boolean>;
};
loadOptions: {
iyzicoAuth(credential: ICredentialDataDecryptedObject): string;
iyzicoRandomKey(): string;
};
};
test: ICredentialTestRequest;
}