Type Alias StructType

StructType: Message<"moddef.v1.StructType"> & {
    description: string;
    fields: StructField[];
    name: string;
    typeId: string;
}

§8.1 STRUCT logical type definition.

Type declaration

  • description: string

    from field: string description = 3;

  • fields: StructField[]

    from field: repeated moddef.v1.StructField fields = 4;

  • name: string

    from field: string name = 2;

  • typeId: string

    from field: string type_id = 1;

from message moddef.v1.StructType