ojp-sdk-legacy
Version:
OJP (Open Journey Planner) Javascript SDK (legacy version)
10 lines (9 loc) • 322 B
TypeScript
import { TreeNode } from "../xml/tree-node";
export declare class PtSituationSource {
sourceType: string;
countryRef: string | null;
name: string | null;
externalCode: string | null;
constructor(sourceType: string);
static initWithSituationTreeNode(treeNode: TreeNode): PtSituationSource | null;
}