lexicon devex tutorial
11
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 14 lines 529 B view raw
1// Code generated by indigo lexgen tool. DO NOT EDIT MANUALLY. 2 3// Lexicon schema: community.lexicon.location.hthree 4 5package communitylexicon 6 7// A physical location in the form of a H3 encoded location. 8type LocationHthree struct { 9 LexiconTypeID string `json:"$type,omitempty" cborgen:"$type,const=community.lexicon.location.hthree,omitempty"` 10 // name: The name of the location. 11 Name *string `json:"name,omitempty" cborgen:"name,omitempty"` 12 // value: The h3 encoded location. 13 Value string `json:"value" cborgen:"value"` 14}