@apillon/sdk
Version:
▶◀ Apillon SDK for NodeJS ▶◀
34 lines • 881 B
TypeScript
import { ApillonModel } from '../../lib/apillon';
export declare class RpcApiKey extends ApillonModel {
/**
* Unique identifier of the RPC API key.
*/
id: number;
/**
* Name of the RPC API key.
*/
name: string;
/**
* Description of the RPC API key.
*/
description: string;
/**
* Unique identifier of the project.
*/
projectUuid: string;
/**
* Unique identifier of the RPC API key, used for RPC calls.
*/
uuid: string;
/**
* Array of favorite URLs for the RPC API key.
*/
urls: string[];
/**
* Constructor which should only be called via Rpc class.
* @param id Unique identifier of the RPC API key.
* @param data Data to populate RPC API key with.
*/
constructor(id: number, data?: Partial<RpcApiKey>);
}
//# sourceMappingURL=rpc-api-key.d.ts.map