mysterium-tequilapi
Version:
Api library to control mysterium client and node
23 lines (21 loc) • 570 B
Flow
// @flow
/**
* Flowtype definitions for service-info
* Generated by Flowgen from a Typescript Definition
* Flowgen v1.5.8
* Author: [Joar Wilk](http://twitter.com/joarwilk)
* Repo: http://github.com/joarwilk/flowgen
*/
import { ProposalDTO } from "./proposal";
import { ServiceStatus } from "./service-status";
export interface ServiceInfoDTO {
id: string;
providerId: string;
type: string;
options?: {
[key: string]: any
};
status: ServiceStatus;
proposal: ProposalDTO;
}
declare export function parseServiceInfoDTO(data: any): ServiceInfoDTO;