FieldSchema: Message<"virtufin.FieldSchema"> & {
    isOptional: boolean;
    isRepeated: boolean;
    name: string;
    oneofCases: OneofCaseSchema[];
    oneofGroup: string;
    type: string;
    typeName: string;
}

Type declaration

  • isOptional: boolean

    from field: bool is_optional = 5;

  • isRepeated: boolean

    from field: bool is_repeated = 4;

  • name: string

    from field: string name = 1;

  • oneofCases: OneofCaseSchema[]

    from field: repeated virtufin.OneofCaseSchema oneof_cases = 7;

  • oneofGroup: string

    from field: string oneof_group = 6;

  • type: string

    from field: string type = 2;

  • typeName: string

    from field: string type_name = 3;

from message virtufin.FieldSchema