static filterBodyField()

in media/src/types/WorkbenchAPI.tsx [58:77]


    static filterBodyField(apiParams: APIParam[], bodyStyle: string): {
        in: string;
        name: string;
        position: "Query" | "Body" | "Host" | "Path";
        required: boolean;
        visibility: "cn" | "intl" | "jp" | "Private" | "Public";
        type: "RepeatList" | "Array" | "Integer" | "String" | "Long" | "Boolean" | "Double" | "Float" | "Json" | "Object" | "Binary" | "Map";
        style: "flat" | "json";
        keyType: "Integer" | "String" | "Long" | "Double" | "Float";
        value: APIParam;
        checkBlank: boolean;
        subType: "Array" | "String" | "Json" | "Object";
        params: APIParam[];
        example: string;
        title: string;
        description: string;
        path: string;
        enumValueTitles: any;
        enum: string[];
    }[];