@iotize/tap
Version:
IoTize Device client for Javascript
24 lines (23 loc) • 1.08 kB
TypeScript
/**
* Generated file. Do not edit
*/
import { CloudPlatform } from './models';
import { ServiceCallType } from '@iotize/tap';
export declare const SERVICE_CALLS: {
getPlatform: ServiceCallType<void, CloudPlatform>;
putPlatform: ServiceCallType<CloudPlatform, void>;
getDataLogUploadPeriod: ServiceCallType<void, number>;
putDataLogUploadPeriod: ServiceCallType<number, void>;
getMqttBrokerPort: ServiceCallType<void, string>;
putMqttBrokerPort: ServiceCallType<string, void>;
getMqttClientId: ServiceCallType<void, string>;
putMqttClientId: ServiceCallType<string, void>;
getMqttUsername: ServiceCallType<void, string>;
putMqttUsername: ServiceCallType<string, void>;
getMqttPassword: ServiceCallType<void, string>;
putMqttPassword: ServiceCallType<string, void>;
getDataLogPublishTopic: ServiceCallType<void, string>;
putDataLogPublishTopic: ServiceCallType<string, void>;
getDataLogSubscribeTopic: ServiceCallType<void, string>;
putDataLogSubscribeTopic: ServiceCallType<string, void>;
};