export interface ServiceMetadataContent { Id: string; Code: string; Name: string; Description: string; FormCode: string; Source: string; ClassName: string; IsCommon: boolean; Operations: ServiceMethod[]; } export interface ServiceMethod { Id: string; Code: string; Name: string; Description: string; Parameters: ServiceMethodParam[]; } export interface ServiceMethodParam { Id: string; Code: string; Name: string; Description: string; ParameterType: string; IsRetVal: boolean; EditorType: string; }