text
stringlengths
11
6.3k
embedding
listlengths
768
768
func NewEvent(event interface{}, source string, sourcetype string, index string) (Event) { hostname, _ := os.Hostname() e := Event{Time: time.Now().Unix(), Host: hostname, Source: source, SourceType: sourcetype, Index: index, Event: event} return e }
[ 0.15734580159187317, 0.13179178535938263, 0.3620259463787079, 0.20131252706050873, -0.06912705302238464, 0.1850334256887436, -0.01639191061258316, 0.07350417226552963, 0.14570598304271698, -0.28432685136795044, -0.29461607336997986, 1.0176069736480713, 0.0002957552787847817, -0.24909494817...
func (c *Client) Log(event interface{}) (error) { // create Splunk log log := NewEvent(event, c.Source, c.SourceType, c.Index) // Convert requestBody struct to byte slice to prep for http.NewRequest b, err := json.Marshal(log) if err != nil { return err } //log.Print(string(b[:])) // print what the splunk po...
[ 0.10853578895330429, 0.26074016094207764, 0.8688669800758362, 0.20622611045837402, -0.4420754909515381, 0.1257735937833786, 0.10218280553817749, 0.3149340748786926, 0.6377142667770386, -0.187026709318161, -0.7207717895507812, 0.4302571713924408, -0.24737223982810974, -0.32604750990867615, ...
func (uniqueIDInfo *UniqueIDInfo) Bytes(stream *nex.StreamOut) []byte { stream.WriteUInt64LE(uniqueIDInfo.NexUniqueID) stream.WriteUInt64LE(uniqueIDInfo.NexUniqueIDPassword) return stream.Bytes() }
[ -0.15398728847503662, -0.4225974977016449, 0.2578781843185425, -0.8491336107254028, 0.1403399556875229, 0.06316108256578445, -1.392090916633606, -0.12991245090961456, 0.9130482077598572, -1.093498706817627, -0.8463907837867737, 0.6788697242736816, -0.28550246357917786, 0.338670939207077, ...
func (uniqueIDInfo *UniqueIDInfo) ExtractFromStream(stream *nex.StreamIn) error { var err error uniqueIDInfo.NexUniqueID = stream.ReadUInt64LE(); uniqueIDInfo.NexUniqueIDPassword = stream.ReadUInt64LE(); if err != nil { return err } return nil }
[ -0.11017978191375732, -0.8099214434623718, 0.2786954343318939, 0.07519245147705078, -0.6940792202949524, -0.20195133984088898, -0.5993264317512512, -0.15397806465625763, 0.696342408657074, -0.707157552242279, -0.8550700545310974, -0.008044911548495293, -0.556004524230957, 0.515880703926086...
func NewUniqueIDInfo() *UniqueIDInfo { return &UniqueIDInfo{} }
[ 0.8960734605789185, -1.4282029867172241, -0.26170825958251953, -0.6522191762924194, -0.40748459100723267, -0.5427400469779968, -0.16695865988731384, 0.2991783022880554, -0.12316150218248367, -0.6084361672401428, -1.5993667840957642, 0.40800562500953674, 0.03480173647403717, -0.673148870468...
func (utilityProtocol *UtilityProtocol) Setup() { nexServer := utilityProtocol.server nexServer.On("Data", func(packet nex.PacketInterface) { request := packet.RMCRequest() if UtilityProtocolID == request.ProtocolID() { switch request.MethodID() { case UtilityMethodAcquireNexUniqueID: go utilityProtoc...
[ -0.15071675181388855, 0.017015548422932625, 0.6019049882888794, -0.8125921487808228, 0.08903887867927551, -0.20258186757564545, -0.1713096648454666, -0.39782586693763733, 0.3614353537559509, -0.37523990869522095, -0.2588619887828827, 0.16433767974376678, -0.6023463010787964, -0.09500871598...
func (utilityProtocol *UtilityProtocol) AcquireNexUniqueID(handler func(err error, client *nex.Client, callID uint32)) { utilityProtocol.AcquireNexUniqueIDHandler = handler }
[ 0.1885867714881897, 0.2684873938560486, 0.20471368730068207, -0.005739662796258926, -0.3279929757118225, 1.0291991233825684, -0.6881222724914551, -0.3978383243083954, 0.5600561499595642, -0.9766068458557129, -0.8326847553253174, 0.8596152663230896, -0.05682607367634773, 0.3642159104347229,...
func (utilityProtocol *UtilityProtocol) AcquireNexUniqueIDWithPassword(handler func(err error, client *nex.Client, callID uint32)) { utilityProtocol.AcquireNexUniqueIDWithPasswordHandler = handler }
[ 0.05296650156378746, 0.23582373559474945, 0.319776326417923, 0.41411080956459045, -0.2953324019908905, 0.9008291959762573, -0.8308650851249695, -0.30982643365859985, 0.8266801238059998, -0.5462304353713989, -0.9094117283821106, -0.09960489720106125, 0.14265260100364685, 0.8103830218315125,...
func (utilityProtocol *UtilityProtocol) AssociateNexUniqueIDWithMyPrincipalID(handler func(err error, client *nex.Client, callID uint32, uniqueIDInfo *UniqueIDInfo)) { utilityProtocol.AssociateNexUniqueIDWithMyPrincipalIDHandler = handler }
[ -0.300344854593277, -0.3782728612422943, 0.31372490525245667, -1.2066928148269653, -0.2741044759750366, 0.8992586731910706, -0.7380040884017944, 0.16183772683143616, 0.8332535028457642, -1.0622453689575195, -0.631569504737854, 1.0227400064468384, -0.9125868678092957, 0.23993897438049316, ...
func (utilityProtocol *UtilityProtocol) AssociateNexUniqueIDsWithMyPrincipalID(handler func(err error, client *nex.Client, callID uint32, uniqueIDInfo []*UniqueIDInfo)) { utilityProtocol.AssociateNexUniqueIDsWithMyPrincipalIDHandler = handler }
[ -0.5033872127532959, -0.42029044032096863, 0.2532411515712738, -1.1644736528396606, 0.01920602284371853, 0.8188401460647583, -0.5614412426948547, 0.33006712794303894, 0.8030979037284851, -0.944115161895752, -0.8202260136604309, 0.9843416213989258, -0.9336981773376465, 0.2088693082332611, ...
func (utilityProtocol *UtilityProtocol) GetAssociatedNexUniqueIDWithMyPrincipalID(handler func(err error, client *nex.Client, callID uint32)) { utilityProtocol.GetAssociatedNexUniqueIDWithMyPrincipalIDHandler = handler }
[ 0.24384354054927826, -0.40579578280448914, 0.321010559797287, -1.0453319549560547, -0.8084564208984375, 0.9803758859634399, -0.5477921962738037, 0.1459059864282608, 0.6227864027023315, -0.9431776404380798, -0.08801966160535812, 1.112691879272461, -0.3006573021411896, -0.2978383004665375, ...
func (utilityProtocol *UtilityProtocol) GetAssociatedNexUniqueIDsWithMyPrincipalID(handler func(err error, client *nex.Client, callID uint32)) { utilityProtocol.GetAssociatedNexUniqueIDsWithMyPrincipalIDHandler = handler }
[ -0.027200045064091682, -0.4502992331981659, 0.2595115900039673, -1.0007587671279907, -0.604282557964325, 0.7506012916564941, -0.5603156685829163, 0.19996008276939392, 0.6195971369743347, -0.8084624409675598, -0.32337433099746704, 1.1620213985443115, -0.26867660880088806, -0.340835690498352...
func (utilityProtocol *UtilityProtocol) GetIntegerSettings(handler func(err error, client *nex.Client, callID uint32, integerSettingIndex uint32)) { utilityProtocol.GetIntegerSettingsHandler = handler }
[ -0.6119725108146667, 1.7351534366607666, 0.3252234160900116, 0.3405173718929291, -0.2275635451078415, 0.2175631821155548, 0.4205169081687927, -1.4118648767471313, 0.09148577600717545, -0.15653441846370697, -0.3535301983356476, 0.26485055685043335, -1.3104138374328613, -0.09097404778003693,...
func (utilityProtocol *UtilityProtocol) GetStringSettings(handler func(err error, client *nex.Client, callID uint32, stringSettingIndex uint32)) { utilityProtocol.GetStringSettingsHandler = handler }
[ 0.06472664326429367, 1.0401803255081177, 0.2603703439235687, -0.39573192596435547, -0.22432804107666016, 0.033686112612485886, -0.17940513789653778, -1.3664929866790771, -0.12753163278102875, -0.17889262735843658, -0.3422330915927887, 0.29450923204421997, -1.0276620388031006, -0.4858653545...
func NewUtilityProtocol(server *nex.Server) *UtilityProtocol { utilityProtocol := &UtilityProtocol{server: server} utilityProtocol.Setup() return utilityProtocol }
[ 0.2924846112728119, 0.04766625165939331, 0.26914316415786743, -0.44468772411346436, -0.6022598147392273, -0.2000093162059784, -0.4739672541618347, -0.41438257694244385, 0.38504719734191895, -0.017104994505643845, -1.3789957761764526, 0.06648536771535873, -0.9306308031082153, -0.26643428206...
func (s SecretForDockerRegistryGeneratorV1) Generate(genericParams map[string]interface{}) (runtime.Object, error) { err := ValidateParams(s.ParamNames(), genericParams) if err != nil { return nil, err } params := map[string]string{} for key, value := range genericParams { strVal, isString := value.(string) ...
[ -0.8505449295043945, 0.5386680960655212, 0.6001134514808655, 0.27109605073928833, 0.3843737542629242, 0.029902998358011246, -0.0009347199811600149, -0.335356205701828, -1.1470340490341187, 0.23337581753730774, -0.5243666768074036, 0.8929427862167358, 0.35848158597946167, 1.1319130659103394...
func (s SecretForDockerRegistryGeneratorV1) StructuredGenerate() (runtime.Object, error) { if err := s.validate(); err != nil { return nil, err } dockercfgContent, err := handleDockercfgContent(s.Username, s.Password, s.Email, s.Server) if err != nil { return nil, err } secret := &api.Secret{} secret.Name = ...
[ -0.5648144483566284, -0.019716156646609306, 0.33120256662368774, -0.11469804495573044, 0.21331115067005157, -0.20017389953136444, 0.14727991819381714, 0.2788732647895813, -0.4637375771999359, -0.549157977104187, -0.9784432649612427, 0.4329114854335785, -0.09304726123809814, 0.4521181881427...
func (s SecretForDockerRegistryGeneratorV1) ParamNames() []GeneratorParam { return []GeneratorParam{ {"name", true}, {"docker-username", true}, {"docker-email", false}, {"docker-password", true}, {"docker-server", true}, } }
[ -0.9744095206260681, 1.023045539855957, 0.5798861384391785, 0.2330557107925415, 0.19224947690963745, 0.29759377241134644, -0.014714024029672146, 0.12747949361801147, -0.08407773822546005, 0.05258233845233917, -0.9552012085914612, 0.3874925374984741, 0.40182048082351685, 1.4701794385910034,...
func (s SecretForDockerRegistryGeneratorV1) validate() error { if len(s.Name) == 0 { return fmt.Errorf("name must be specified") } if len(s.Username) == 0 { return fmt.Errorf("username must be specified") } if len(s.Password) == 0 { return fmt.Errorf("password must be specified") } if len(s.Server) == 0 { ...
[ -0.4226372539997101, 1.5544359683990479, 0.5347277522087097, -0.0830366387963295, 0.6153112649917603, -0.23689530789852142, 0.3324487507343292, 0.07999440282583237, -1.128635287284851, -0.1580434888601303, -0.2530100345611572, 0.7737046480178833, -0.605128288269043, 1.521740198135376, 0....
func handleDockercfgContent(username, password, email, server string) ([]byte, error) { dockercfgAuth := credentialprovider.DockerConfigEntry{ Username: username, Password: password, Email: email, } dockerCfg := map[string]credentialprovider.DockerConfigEntry{server: dockercfgAuth} return json.Marshal(do...
[ -0.2775006592273712, -0.17779263854026794, 0.3526778221130371, 0.10697457939386368, -0.5709922313690186, -0.6107146739959717, 0.2839324474334717, 0.24731993675231934, -0.7548340559005737, 0.18573075532913208, -1.1810983419418335, -0.17408756911754608, -0.2851150929927826, 0.444022864103317...
func (r *RegistryCatalog) FileContent(pretty bool) ([]byte, error) { var content []byte var err error if pretty { content, err = json.MarshalIndent(r, "", " ") } else { content, err = json.Marshal(r) } return content, err }
[ -0.8257543444633484, -0.32989662885665894, 0.3711698055267334, -0.7912803888320923, -0.23299327492713928, 0.029711226001381874, -0.5482090711593628, -0.09458865970373154, -1.0157320499420166, 0.6613063812255859, 0.02518857643008232, 0.26672929525375366, -0.08831772208213806, -0.24367254972...
func (r RepoConfig) AddressOrDefault(predefined string) string { if r.Address != "" { return r.Address } return predefined }
[ 0.006578952539712191, -0.28575757145881653, 0.4642203152179718, -0.6404985189437866, 0.30955350399017334, 0.17916066944599152, -0.13928839564323425, 0.4471929669380188, 1.0877783298492432, 0.5405177474021912, -0.004314322955906391, -0.1440771520137787, -0.9831811785697937, 0.17603826522827...
func (r RepoConfig) Filename(base string) string { if r.OutputFilename != "" { return r.OutputFilename } return path.Join(base, fmt.Sprintf("%s.json", r.Name)) }
[ -0.28156358003616333, -0.9172645807266235, 0.7110944390296936, -0.5474875569343567, -0.3852502107620239, -0.2761760354042053, 0.1485687792301178, -0.01704859361052513, -1.4435664415359497, 0.5186466574668884, 0.19748347997665405, -0.38847824931144714, 0.4598546028137207, 0.1679975986480713...
func ConvertToCatalogableRegistry(r RepoConfig) (CatalogableRegistry, error) { var catalog CatalogableRegistry var err error switch r.Kind { case "quay": catalog = QuayRegistry{r} case "dockerhub": catalog = DockerhubRegistry{r} default: err = fmt.Errorf("%s is an invalid registry kind", r.Kind) } return ...
[ -0.23532883822917938, 0.5812057852745056, 0.2003692090511322, -0.2309676706790924, -0.33992525935173035, 0.244430810213089, -0.04035339131951332, -0.3460281491279602, 0.3400189280509949, 0.5068523287773132, 0.20304246246814728, 0.665764570236206, -0.45529991388320923, 0.26728469133377075, ...
func UserSvcAddress() string { return os.Getenv("USER_SVC_ADDRESS") }
[ -0.10379920899868011, -0.980789065361023, 0.5071424841880798, -0.33226948976516724, -0.36831730604171753, 0.4134272336959839, 0.17952507734298706, -0.6723427176475525, 0.7084375023841858, 0.21845309436321259, 0.21343131363391876, 1.503914475440979, 0.4251001477241516, 0.2898049056529999, ...
func AuthDomain() string { return os.Getenv("AUTH_DOMAIN") }
[ -0.4873863160610199, -0.540188729763031, 0.37952157855033875, 0.40752020478248596, 0.0913923978805542, 0.6035239696502686, 0.2769249975681305, -0.19976669549942017, -0.04953577369451523, -0.775030791759491, -0.055539119988679886, 2.3202459812164307, -0.23980113863945007, 0.6330676674842834...
func Contains(a []int, x int) bool { for _, n := range a { if x == n { return true } } return false }
[ 0.12789830565452576, -0.19796490669250488, 0.2308022826910019, -0.46117866039276123, -0.6673006415367126, 0.17733971774578094, -1.1837401390075684, -0.7502031922340393, 0.3025646209716797, 0.0015276203630492091, -0.48212793469429016, 0.8176608085632324, 0.0923495963215828, 0.05420570820569...
func (s *Attempt_State) Evolve(newState Attempt_State) error { nextStates := validAttemptStateEvolution[*s] if nextStates == nil { return fmt.Errorf("invalid state transition: no transitions defined for %s", *s) } if newState == *s { return nil } for _, val := range nextStates { if newState == val { *s...
[ 0.05767004191875458, -0.03263388201594353, 0.43981438875198364, -0.035919126123189926, 0.019187550991773605, -0.1691758632659912, -0.6595658659934998, 0.03330265358090401, 0.3736130893230438, 0.18519479036331177, -0.23940381407737732, -0.08619203418493271, 0.1534372717142105, 0.40583109855...
func (s *Attempt_State) MustEvolve(newState Attempt_State) { err := s.Evolve(newState) if err != nil { panic(err) } }
[ -0.11808660626411438, 0.7144461870193481, 0.5861478447914124, 0.4278078079223633, 0.26898694038391113, 1.0825906991958618, -1.2471264600753784, 0.13508915901184082, 0.17294347286224365, 0.539462149143219, -0.3519381284713745, -0.3278803527355194, 0.2320786863565445, 0.6722390055656433, -...
func (s Attempt_State) Terminal() bool { return len(validAttemptStateEvolution[s]) == 0 }
[ -0.9756032824516296, -0.8345931768417358, 0.2572478950023651, -0.4795481562614441, 0.15191277861595154, 0.531324565410614, -0.7715634703636169, 0.42494040727615356, 1.1202150583267212, -0.16677086055278778, -0.0048486897721886635, 0.5170797109603882, 0.37388524413108826, -0.142266452312469...
func Asset(name string) ([]byte, error) { canonicalName := strings.Replace(name, "\\", "/", -1) if f, ok := _bindata[canonicalName]; ok { a, err := f() if err != nil { return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) } return a.bytes, nil } return nil, fmt.Errorf("Asset %s not found"...
[ -1.0117802619934082, -1.1598905324935913, 0.6830530166625977, -0.6832786202430725, -1.3779852390289307, -0.0471651665866375, 0.32330334186553955, -1.387198805809021, -1.1437947750091553, 0.4887530207633972, 0.5087063908576965, 0.4118388593196869, -0.5561882853507996, -0.2793937027454376, ...
func AssetString(name string) (string, error) { data, err := Asset(name) return string(data), err }
[ -1.2477113008499146, -0.742380678653717, 0.3967421054840088, -1.4730788469314575, -1.8356844186782837, 0.4587579369544983, -0.22362031042575836, -1.395470142364502, -0.5910036563873291, 0.6737304329872131, 0.5670546889305115, 0.45071372389793396, 0.1242198497056961, -0.6748080849647522, ...
func MustAsset(name string) []byte { a, err := Asset(name) if err != nil { panic("asset: Asset(" + name + "): " + err.Error()) } return a }
[ -0.012778721749782562, 0.11985722929239273, 0.4091297686100006, -0.5268407464027405, -0.8276721239089966, 0.4719153940677643, -0.8186281323432922, -1.5736594200134277, 0.1638851910829544, 0.6357054710388184, -0.5354582667350769, 0.35693278908729553, 0.00571512570604682, -0.0248876828700304...
func MustAssetString(name string) string { return string(MustAsset(name)) }
[ -0.7957004308700562, -0.4993444085121155, 0.4154260754585266, -0.059688813984394073, -1.7780245542526245, 0.7658588886260986, -0.5333529710769653, -1.525808334350586, -0.11369087547063828, 0.8382498025894165, 0.9579691290855408, -0.4543590545654297, 0.2904685139656067, 0.30602753162384033,...
func AssetInfo(name string) (os.FileInfo, error) { canonicalName := strings.Replace(name, "\\", "/", -1) if f, ok := _bindata[canonicalName]; ok { a, err := f() if err != nil { return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) } return a.info, nil } return nil, fmt.Errorf("AssetIn...
[ 0.19660352170467377, -0.9794557094573975, 0.5885096192359924, -0.9617626070976257, -1.2945109605789185, 0.0021686458494514227, 0.8489776849746704, -0.8787253499031067, -1.297000765800476, 0.3399394750595093, 0.40474894642829895, 0.37507131695747375, 0.06526178866624832, -0.2895677089691162...
func AssetDigest(name string) ([sha256.Size]byte, error) { canonicalName := strings.Replace(name, "\\", "/", -1) if f, ok := _bindata[canonicalName]; ok { a, err := f() if err != nil { return [sha256.Size]byte{}, fmt.Errorf("AssetDigest %s can't read by error: %v", name, err) } return a.digest, nil } ret...
[ -0.3591914176940918, -0.618196964263916, 0.7434926629066467, -1.1689051389694214, -1.1525448560714722, -0.5196003317832947, -0.24113009870052338, -1.047956109046936, -0.5882822275161743, 0.310821533203125, 0.08598484843969345, -0.05696680024266243, -0.2963509261608124, 0.04578961059451103,...
func Digests() (map[string][sha256.Size]byte, error) { mp := make(map[string][sha256.Size]byte, len(_bindata)) for name := range _bindata { a, err := _bindata[name]() if err != nil { return nil, err } mp[name] = a.digest } return mp, nil }
[ -0.8371760845184326, -0.8630335330963135, 0.8149355053901672, -0.2049284726381302, -0.4950226843357086, -0.7048237919807434, -0.3220936954021454, -0.4336593449115753, -0.07046856731176376, -0.3687075674533844, -0.4737858474254608, 0.227486252784729, 0.28457415103912354, 0.8567593097686768,...
func AssetNames() []string { names := make([]string, 0, len(_bindata)) for name := range _bindata { names = append(names, name) } return names }
[ -0.7293786406517029, -0.84603351354599, 0.7321817874908447, -0.39323171973228455, -0.48951348662376404, 0.766120195388794, -0.5028704404830933, -0.8655747175216675, -0.4145086705684662, 0.8099910020828247, 0.16903378069400787, 1.1630488634109497, -0.02815241925418377, 0.03426046296954155, ...
func RestoreAsset(dir, name string) error { data, err := Asset(name) if err != nil { return err } info, err := AssetInfo(name) if err != nil { return err } err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) if err != nil { return err } err = ioutil.WriteFile(_filePath(dir, name), d...
[ -0.0495058111846447, -0.19623610377311707, 0.6907734870910645, -1.3569064140319824, -0.29670456051826477, -0.3611965775489807, 0.07744678109884262, -0.4719567894935608, -0.31164005398750305, -0.08379650115966797, -0.002142181620001793, 0.06316616386175156, -0.3428141176700592, -0.616301655...
func RestoreAssets(dir, name string) error { children, err := AssetDir(name) // File if err != nil { return RestoreAsset(dir, name) } // Dir for _, child := range children { err = RestoreAssets(dir, filepath.Join(name, child)) if err != nil { return err } } return nil }
[ 0.42261990904808044, 0.30019938945770264, 0.581339955329895, -0.20641711354255676, -0.2382902055978775, -0.24414557218551636, 0.5739707946777344, -0.029911449179053307, 0.061882197856903076, -0.4392353594303131, 0.5113734006881714, 0.327597051858902, -0.6125143766403198, 0.0351651050150394...
func NewJourneyJourneyResultsParams() *JourneyJourneyResultsParams { var () return &JourneyJourneyResultsParams{ timeout: cr.DefaultTimeout, } }
[ -0.5592259764671326, -0.3661631643772125, 0.21665063500404358, 0.41416916251182556, -0.21864020824432373, 0.09058103710412979, -0.10466206818819046, -0.42056772112846375, -1.3998180627822876, -0.10369176417589188, -0.6302710175514221, -0.6525813341140747, -1.0974777936935425, 0.35619246959...
func NewJourneyJourneyResultsParamsWithTimeout(timeout time.Duration) *JourneyJourneyResultsParams { var () return &JourneyJourneyResultsParams{ timeout: timeout, } }
[ -0.19174808263778687, -0.32330143451690674, 0.2217997908592224, 0.20679330825805664, -0.58356112241745, 0.814027726650238, -0.7090629935264587, -0.3553118407726288, -1.251366138458252, 0.7629614472389221, -0.39978840947151184, -0.08690885454416275, -0.8848143219947815, 0.5656358003616333, ...
func NewJourneyJourneyResultsParamsWithContext(ctx context.Context) *JourneyJourneyResultsParams { var () return &JourneyJourneyResultsParams{ Context: ctx, } }
[ -0.5952652096748352, -0.11892848461866379, 0.34795767068862915, -0.14666597545146942, -0.42193350195884705, 0.9574744701385498, -0.47774770855903625, -0.9797772169113159, -0.6119359731674194, 0.09192930907011032, -0.502403736114502, -0.46413084864616394, -0.7961998581886292, -0.09835646301...
func NewJourneyJourneyResultsParamsWithHTTPClient(client *http.Client) *JourneyJourneyResultsParams { var () return &JourneyJourneyResultsParams{ HTTPClient: client, } }
[ -0.517354428768158, -0.6674872636795044, 0.4373476207256317, -0.08293473720550537, -0.24043504893779755, 0.8261609673500061, -0.029584743082523346, -0.3674185574054718, -1.2468920946121216, -0.14267659187316895, -0.4814268946647644, -0.5451509356498718, -0.5987769961357117, 0.1061838716268...
func (o *JourneyJourneyResultsParams) WithTimeout(timeout time.Duration) *JourneyJourneyResultsParams { o.SetTimeout(timeout) return o }
[ -0.2811221182346344, 0.3027489483356476, 0.18620793521404266, -0.20868679881095886, -0.2627292275428772, 0.39070048928260803, -0.12214450538158417, -0.09306887537240982, -0.7683785557746887, 0.46280384063720703, -0.12243776023387909, -0.481673002243042, -0.1643168032169342, 0.4532116353511...
func (o *JourneyJourneyResultsParams) SetTimeout(timeout time.Duration) { o.timeout = timeout }
[ -0.40836721658706665, 0.454045832157135, 0.27240368723869324, 0.13992023468017578, -0.1666332483291626, 0.8833247423171997, 0.08887840062379837, 0.06861057877540588, -0.7295187711715698, 0.5477962493896484, -0.23694512248039246, -0.06800924241542816, -0.6397952437400818, 0.521476149559021,...
func (o *JourneyJourneyResultsParams) WithContext(ctx context.Context) *JourneyJourneyResultsParams { o.SetContext(ctx) return o }
[ -0.9615836143493652, 0.35246074199676514, 0.38343897461891174, -0.3486904501914978, -0.2903135418891907, 0.43328216671943665, -0.11393915861845016, -0.5702100396156311, -0.4182017743587494, -0.23443365097045898, -0.1544405221939087, -0.7910043597221375, -0.7572614550590515, -0.192652389407...
func (o *JourneyJourneyResultsParams) SetContext(ctx context.Context) { o.Context = ctx }
[ -0.8679441213607788, 0.5967028737068176, 0.3152940571308136, 0.1420343518257141, -0.017780890688300133, 0.7436255812644958, 0.29062455892562866, -0.5144686102867126, 0.16840270161628723, -0.24467048048973083, -0.4745367467403412, -0.30258890986442566, -1.0831657648086548, -0.09451574087142...
func (o *JourneyJourneyResultsParams) WithHTTPClient(client *http.Client) *JourneyJourneyResultsParams { o.SetHTTPClient(client) return o }
[ -0.4778011739253998, -0.48010164499282837, 0.3781874477863312, -0.477462500333786, -0.060904134064912796, 0.19205965101718903, 0.4815449118614197, -0.3046896755695343, -1.2331163883209229, -0.6417140960693359, -0.15151652693748474, -0.8225464224815369, -0.06924651563167572, -0.276723921298...
func (o *JourneyJourneyResultsParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client }
[ -0.11088646203279495, -0.12291450053453445, 0.22125324606895447, -0.7889516949653625, -0.11363732069730759, 0.3260534405708313, 0.8055029511451721, -0.3420248031616211, -1.3989827632904053, -0.4787551760673523, -0.5720157623291016, -0.03636998310685158, -0.7384158968925476, -0.341773420572...
func (o *JourneyJourneyResultsParams) WithAccessibilityPreference(accessibilityPreference []string) *JourneyJourneyResultsParams { o.SetAccessibilityPreference(accessibilityPreference) return o }
[ 0.14985692501068115, -0.21056996285915375, 0.43993017077445984, -0.659083902835846, -0.9253135323524475, 0.0215520728379488, 0.3402998745441437, -0.4425452947616577, -0.11593446135520935, 0.41069087386131287, 0.1094047874212265, -0.6249852180480957, -0.5094515681266785, -0.2479714304208755...
func (o *JourneyJourneyResultsParams) SetAccessibilityPreference(accessibilityPreference []string) { o.AccessibilityPreference = accessibilityPreference }
[ -0.3260323405265808, -0.2540919780731201, 0.34888404607772827, -0.6589460372924805, -0.7392221093177795, 0.3037276566028595, 0.5327457785606384, -0.4378568232059479, -0.17210179567337036, 0.5459635853767395, -0.10315079241991043, -0.036960452795028687, -1.1712132692337036, -0.0795509144663...
func (o *JourneyJourneyResultsParams) WithAdjustment(adjustment *string) *JourneyJourneyResultsParams { o.SetAdjustment(adjustment) return o }
[ -0.2970265746116638, -0.3937033712863922, 0.2447742372751236, -0.5618420243263245, 0.010641904547810555, 0.279328316450119, 0.48299238085746765, -0.44399961829185486, -0.4237441420555115, 0.23237822949886322, -0.0053307069465518, -0.7035385966300964, -0.2123238742351532, 0.4252874553203583...
func (o *JourneyJourneyResultsParams) SetAdjustment(adjustment *string) { o.Adjustment = adjustment }
[ -0.5614407658576965, -0.18944711983203888, 0.1535872370004654, -0.20330491662025452, -0.0011516049271449447, 0.555808961391449, 0.9524707198143005, -0.26263076066970825, -0.31399857997894287, 0.2986821234226227, -0.5555670857429504, -0.16235177218914032, -0.9124897718429565, 0.625207185745...
func (o *JourneyJourneyResultsParams) WithAlternativeCycle(alternativeCycle *bool) *JourneyJourneyResultsParams { o.SetAlternativeCycle(alternativeCycle) return o }
[ -0.18908379971981049, -0.2224457561969757, 0.2163488268852234, -0.42989760637283325, -0.6704815626144409, 1.2147809267044067, 0.1051490306854248, 0.000291610776912421, -1.2417190074920654, 0.6675076484680176, -0.11520648002624512, -0.9098188877105713, -0.25001102685928345, 0.18123146891593...
func (o *JourneyJourneyResultsParams) SetAlternativeCycle(alternativeCycle *bool) { o.AlternativeCycle = alternativeCycle }
[ -0.5820330381393433, -0.3287808299064636, 0.13921302556991577, -0.8018358945846558, -0.4831731915473938, 1.389141321182251, 0.254224956035614, -0.36759668588638306, -1.288312315940857, 1.002001404762268, -0.27407950162887573, -0.0833769291639328, -0.6742706298828125, 0.20963585376739502, ...
func (o *JourneyJourneyResultsParams) WithAlternativeWalking(alternativeWalking *bool) *JourneyJourneyResultsParams { o.SetAlternativeWalking(alternativeWalking) return o }
[ -0.5756767988204956, -0.25543615221977234, 0.19507983326911926, -0.3854954242706299, -0.660328209400177, 0.9385882019996643, 0.2724303603172302, 0.023155538365244865, -0.9012628197669983, -0.27293476462364197, 0.03442500904202461, -1.3487247228622437, -0.14208319783210754, 0.39285552501678...
func (o *JourneyJourneyResultsParams) SetAlternativeWalking(alternativeWalking *bool) { o.AlternativeWalking = alternativeWalking }
[ -0.9388002157211304, -0.31193435192108154, 0.09982253611087799, -0.7590512633323669, -0.5353612899780273, 1.414262294769287, 0.41355255246162415, -0.1708277463912964, -0.9274764060974121, -0.006262280512601137, -0.4150828421115875, -0.708173394203186, -0.6143466830253601, 0.642163455486297...
func (o *JourneyJourneyResultsParams) WithApplyHTMLMarkup(applyHTMLMarkup *bool) *JourneyJourneyResultsParams { o.SetApplyHTMLMarkup(applyHTMLMarkup) return o }
[ -0.5735924243927002, 0.3583219647407532, 0.45514142513275146, 0.24958956241607666, -0.5258628129959106, -0.15952609479427338, -0.13326871395111084, 0.872154176235199, -0.7564812898635864, 0.10942009836435318, 0.4896186292171478, -1.1446986198425293, -0.019644247367978096, 0.836480498313903...
func (o *JourneyJourneyResultsParams) SetApplyHTMLMarkup(applyHTMLMarkup *bool) { o.ApplyHTMLMarkup = applyHTMLMarkup }
[ -0.9258682727813721, 0.5702340602874756, 0.36963891983032227, 0.1310141235589981, -0.4136369228363037, 0.3313838243484497, 0.2746509313583374, 1.0834628343582153, -0.6706138849258423, -0.13001751899719238, 0.05650901049375534, -0.5039576292037964, -0.535714328289032, 1.0925365686416626, ...
func (o *JourneyJourneyResultsParams) WithBikeProficiency(bikeProficiency []string) *JourneyJourneyResultsParams { o.SetBikeProficiency(bikeProficiency) return o }
[ -0.8221191167831421, 0.20078130066394806, 0.43519431352615356, 0.48916420340538025, -0.14383544027805328, -0.14550428092479706, 0.519366443157196, -0.6458763480186462, -1.0400390625, 0.6174396872520447, -0.6733188629150391, -0.4459422528743744, -1.1577401161193848, 0.2524838149547577, -0...
func (o *JourneyJourneyResultsParams) SetBikeProficiency(bikeProficiency []string) { o.BikeProficiency = bikeProficiency }
[ -1.1884269714355469, 0.5174900889396667, 0.3446239233016968, 0.583558201789856, 0.18554751574993134, 0.2504720687866211, 0.7383204102516174, -0.8119865655899048, -1.1895726919174194, 0.6672469973564148, -1.1940555572509766, 0.2228623479604721, -1.7668381929397583, 0.3424258828163147, -0....
func (o *JourneyJourneyResultsParams) WithCyclePreference(cyclePreference *string) *JourneyJourneyResultsParams { o.SetCyclePreference(cyclePreference) return o }
[ -0.7533001899719238, 0.42800331115722656, 0.4613175392150879, -0.4421476721763611, -0.3635689914226532, -0.4541756212711334, 0.44186607003211975, -0.8988413214683533, -0.18714843690395355, 0.5103811025619507, -0.3880575895309448, -0.36130833625793457, -0.8824955224990845, -0.12053824961185...
func (o *JourneyJourneyResultsParams) SetCyclePreference(cyclePreference *string) { o.CyclePreference = cyclePreference }
[ -1.0576839447021484, 0.4461415410041809, 0.4490664303302765, -0.2368062436580658, -0.22686158120632172, 0.1274280548095703, 0.6817535161972046, -0.8162754774093628, -0.21601355075836182, 0.740912675857544, -0.695527195930481, 0.29947397112846375, -1.4796931743621826, -0.11479563266038895, ...
func (o *JourneyJourneyResultsParams) WithDate(date *string) *JourneyJourneyResultsParams { o.SetDate(date) return o }
[ -0.33698949217796326, 0.4542423188686371, 0.2612156271934509, -0.029444565996527672, -0.1566002517938614, 0.5820696949958801, 0.10666655749082565, -0.6502862572669983, -1.0334404706954956, -0.31570935249328613, -0.3035121262073517, -1.0726464986801147, -0.6341468691825867, 0.52092605829238...
func (o *JourneyJourneyResultsParams) SetDate(date *string) { o.Date = date }
[ -0.38569140434265137, 0.832118570804596, 0.22501051425933838, 0.3792993724346161, -0.12050071358680725, 0.9649760127067566, 0.012410888448357582, -0.3103523850440979, -0.8437677621841431, -0.49371761083602905, -0.6856906414031982, -0.3480963408946991, -1.0684784650802612, 0.979160130023956...
func (o *JourneyJourneyResultsParams) WithFrom(from string) *JourneyJourneyResultsParams { o.SetFrom(from) return o }
[ -0.25351643562316895, -0.14924655854701996, 0.16907291114330292, 0.11087071895599365, -0.35777807235717773, 0.4024416506290436, 0.5457994341850281, -0.37176385521888733, -0.5926573872566223, -0.18508057296276093, 0.16800014674663544, -0.6462138295173645, -0.11301162093877792, -0.1138451695...
func (o *JourneyJourneyResultsParams) SetFrom(from string) { o.From = from }
[ -0.4298212230205536, -0.041722699999809265, 0.154971182346344, 0.2855302095413208, -0.3374796509742737, 0.8168753385543823, 0.7075575590133667, -0.008719552308321, -0.6683716177940369, -0.2510555386543274, -0.2529289424419403, 0.020147312432527542, -0.5689612627029419, -0.01834679581224918...
func (o *JourneyJourneyResultsParams) WithFromName(fromName *string) *JourneyJourneyResultsParams { o.SetFromName(fromName) return o }
[ -0.3062836527824402, -0.48036083579063416, 0.30033835768699646, 0.12695403397083282, -0.7743428945541382, 0.08179786801338196, 0.2070712298154831, -0.2654344439506531, -0.7964583039283752, 0.22910071909427643, -0.2478308379650116, -0.8245363235473633, -0.7480085492134094, -0.08752312511205...
func (o *JourneyJourneyResultsParams) SetFromName(fromName *string) { o.FromName = fromName }
[ -0.7482876777648926, -0.5235304832458496, 0.28272944688796997, 0.14680849015712738, -0.5448756217956543, 0.31818413734436035, 0.5398133993148804, -0.2401340901851654, -0.5507175326347351, 0.07381578534841537, -0.7927758693695068, 0.17295804619789124, -1.1375377178192139, -0.096821099519729...
func (o *JourneyJourneyResultsParams) WithJourneyPreference(journeyPreference *string) *JourneyJourneyResultsParams { o.SetJourneyPreference(journeyPreference) return o }
[ -0.6979750394821167, 0.08856335282325745, 0.5255568623542786, -0.5487746596336365, -0.6271652579307556, -0.09271292388439178, -0.19548065960407257, -0.9642119407653809, -0.26556918025016785, 0.48417404294013977, -0.8378711342811584, -0.5400850772857666, -0.5642167329788208, -0.106636531651...
func (o *JourneyJourneyResultsParams) SetJourneyPreference(journeyPreference *string) { o.JourneyPreference = journeyPreference }
[ -1.0600003004074097, 0.1612616926431656, 0.44393008947372437, -0.4236983358860016, -0.4919728636741638, 0.2899908423423767, -0.07300327718257904, -0.8637860417366028, -0.5711134076118469, 0.6876311898231506, -1.0484155416488647, -0.16968262195587158, -1.3938270807266235, 0.0057815662585198...
func (o *JourneyJourneyResultsParams) WithMaxTransferMinutes(maxTransferMinutes *string) *JourneyJourneyResultsParams { o.SetMaxTransferMinutes(maxTransferMinutes) return o }
[ -0.4459291994571686, 0.18415288627147675, 0.1394340991973877, -0.9555298686027527, -0.7176699042320251, 0.3238751292228699, -0.7231889963150024, -0.4010026454925537, 0.1768108606338501, 0.35266560316085815, -0.3844478130340576, -1.0837446451187134, -0.6987781524658203, -0.2236952930688858,...
func (o *JourneyJourneyResultsParams) SetMaxTransferMinutes(maxTransferMinutes *string) { o.MaxTransferMinutes = maxTransferMinutes }
[ -0.9544107913970947, -0.14791949093341827, 0.15498657524585724, -1.2163490056991577, -0.4828490614891052, 0.5825130343437195, -0.44595959782600403, -0.29587671160697937, 0.16091400384902954, 0.3846743106842041, -0.7833932638168335, -0.6182341575622559, -1.0774742364883423, -0.3114826977252...
func (o *JourneyJourneyResultsParams) WithMaxWalkingMinutes(maxWalkingMinutes *string) *JourneyJourneyResultsParams { o.SetMaxWalkingMinutes(maxWalkingMinutes) return o }
[ -0.8181774616241455, 0.03748201206326485, -0.18384049832820892, -0.27798643708229065, -1.0515801906585693, 0.4854436218738556, -0.6892688274383545, 0.08824265003204346, 0.1527552753686905, -0.2999109625816345, -0.41719064116477966, -1.77533757686615, -0.8772642612457275, -0.245284095406532...
func (o *JourneyJourneyResultsParams) SetMaxWalkingMinutes(maxWalkingMinutes *string) { o.MaxWalkingMinutes = maxWalkingMinutes }
[ -1.3708739280700684, -0.18763847649097443, -0.25243961811065674, -0.5322297215461731, -0.9085394144058228, 0.9448642730712891, -0.6426985263824463, 0.1638401746749878, 0.3465360105037689, -0.2357604205608368, -0.8000867962837219, -1.2353554964065552, -1.400661826133728, -0.3706343173980713...
func (o *JourneyJourneyResultsParams) WithMode(mode []string) *JourneyJourneyResultsParams { o.SetMode(mode) return o }
[ -1.0630215406417847, 0.335885226726532, 0.2133241444826126, -0.0408518984913826, 0.1476029008626938, 0.7342717051506042, 0.09273688495159149, -0.11474249511957169, -0.6713054180145264, -0.07796537131071091, -0.1669277548789978, -1.1711392402648926, -0.7747437953948975, 0.3276626467704773, ...
func (o *JourneyJourneyResultsParams) SetMode(mode []string) { o.Mode = mode }
[ -1.3018585443496704, 0.4443954825401306, 0.2694242596626282, 0.3265148103237152, 0.37222743034362793, 0.9775083065032959, 0.05161022022366524, 0.09771520644426346, -0.5302495956420898, 0.11392026394605637, -0.4258820116519928, -0.4788033366203308, -1.2504292726516724, 0.8107327222824097, ...
func (o *JourneyJourneyResultsParams) WithNationalSearch(nationalSearch *bool) *JourneyJourneyResultsParams { o.SetNationalSearch(nationalSearch) return o }
[ -0.4899834990501404, 0.312845379114151, 0.03939283266663551, 0.17852839827537537, -0.5663754940032959, 0.028067588806152344, -0.47056645154953003, -0.042738430202007294, -0.6093686819076538, -0.12813913822174072, -0.28534674644470215, -1.1562583446502686, -0.6919803023338318, 0.43702089786...
func (o *JourneyJourneyResultsParams) SetNationalSearch(nationalSearch *bool) { o.NationalSearch = nationalSearch }
[ -0.7919978499412537, 0.2596195936203003, 0.12748530507087708, 0.0898103341460228, -0.25491178035736084, 0.43701761960983276, -0.1586833894252777, -0.12611021101474762, -0.8336804509162903, -0.053980108350515366, -0.9385584592819214, -0.3582950532436371, -1.1075325012207031, 0.7609695792198...
func (o *JourneyJourneyResultsParams) WithTaxiOnlyTrip(taxiOnlyTrip *bool) *JourneyJourneyResultsParams { o.SetTaxiOnlyTrip(taxiOnlyTrip) return o }
[ -0.4123435318470001, 0.12526443600654602, 0.24644920229911804, -0.07046332955360413, -0.7691704630851746, 0.4781125783920288, -0.41670525074005127, 0.10188803821802139, -0.716383695602417, -0.1606733202934265, 0.14594389498233795, -1.0298383235931396, 0.49760937690734863, -0.47785016894340...
func (o *JourneyJourneyResultsParams) SetTaxiOnlyTrip(taxiOnlyTrip *bool) { o.TaxiOnlyTrip = taxiOnlyTrip }
[ -0.7030020952224731, 0.07264304906129837, 0.13767501711845398, -0.4785039722919464, -0.6659284830093384, 1.0996733903884888, -0.1904032826423645, 0.13632610440254211, -0.8190680146217346, -0.09726637601852417, -0.19920067489147186, -0.1550397425889969, -0.04315958172082901, -0.261915862560...
func (o *JourneyJourneyResultsParams) WithTime(time *string) *JourneyJourneyResultsParams { o.SetTime(time) return o }
[ -0.8276821374893188, 0.06243910640478134, 0.37190502882003784, -0.15430493652820587, 0.179899662733078, -0.09629993140697479, -0.09654489159584045, -0.4666246473789215, -0.863871157169342, 0.159073144197464, -0.5854292511940002, -1.4656482934951782, -0.8870400786399841, 0.730478823184967, ...
func (o *JourneyJourneyResultsParams) SetTime(time *string) { o.Time = time }
[ -0.8166884779930115, 0.2960023581981659, 0.2923584580421448, 0.24579943716526031, -0.03371787816286087, 0.5097187757492065, -0.16995589435100555, -0.19996941089630127, -0.5899573564529419, 0.19852347671985626, -0.6877016425132751, -1.0196285247802734, -1.2271493673324585, 0.937817573547363...
func (o *JourneyJourneyResultsParams) WithTimeIs(timeIs *string) *JourneyJourneyResultsParams { o.SetTimeIs(timeIs) return o }
[ -1.2599585056304932, 0.18574409186840057, 0.14539781212806702, -0.030382895842194557, -0.5466535687446594, -0.07174230366945267, -0.7061888575553894, -0.6906862258911133, -0.15176446735858917, 0.2865779399871826, -0.17290917038917542, -0.7004414796829224, -0.04479442164301872, 0.3884288072...
func (o *JourneyJourneyResultsParams) SetTimeIs(timeIs *string) { o.TimeIs = timeIs }
[ -1.3485928773880005, 0.03389184549450874, -0.04858201742172241, 0.20428913831710815, -0.48792481422424316, 0.4471220076084137, -0.45575571060180664, -0.5968953371047974, 0.042573653161525726, 0.5441422462463379, -0.45822873711586, -0.20616735517978668, -0.6256958842277527, 0.54366725683212...
func (o *JourneyJourneyResultsParams) WithTo(to string) *JourneyJourneyResultsParams { o.SetTo(to) return o }
[ -1.0900156497955322, 0.46961966156959534, 0.27161210775375366, -0.8282593488693237, 0.4560440480709076, 0.07606260478496552, 0.5115516185760498, -0.477681964635849, -1.2266442775726318, -0.2647385895252228, -0.6233153343200684, -0.3730987310409546, -0.03846012428402901, -0.4671120345592499...
func (o *JourneyJourneyResultsParams) SetTo(to string) { o.To = to }
[ -1.1948710680007935, 0.516859233379364, 0.24373701214790344, -0.6991546750068665, 0.48165085911750793, 0.43546897172927856, 0.6099322438240051, -0.14460809528827667, -1.1742819547653198, -0.388717383146286, -1.0163729190826416, 0.10363727807998657, -0.3398676812648773, -0.4322155714035034,...
func (o *JourneyJourneyResultsParams) WithToName(toName *string) *JourneyJourneyResultsParams { o.SetToName(toName) return o }
[ -0.9476653933525085, 0.027277283370494843, 0.16240443289279938, -0.519438624382019, -0.549496591091156, -0.41117894649505615, 0.12153314054012299, -0.2961532175540924, -0.7946046590805054, 0.7678737044334412, -0.5658890008926392, -1.1817446947097778, -0.17669640481472015, -0.35895830392837...
func (o *JourneyJourneyResultsParams) SetToName(toName *string) { o.ToName = toName }
[ -1.3751776218414307, 0.03587009757757187, 0.20320086181163788, -0.5250421762466431, -0.535230815410614, -0.2794622778892517, 0.3272530138492584, -0.38810446858406067, -0.7887062430381775, 0.6625614166259766, -1.1836358308792114, -0.4883158504962921, -0.6856058239936829, -0.2801456749439239...
func (o *JourneyJourneyResultsParams) WithUseMultiModalCall(useMultiModalCall *bool) *JourneyJourneyResultsParams { o.SetUseMultiModalCall(useMultiModalCall) return o }
[ -0.6207062005996704, 1.0514166355133057, 0.5641562342643738, 0.11838076263666153, -0.7601922154426575, -0.19840723276138306, -0.251472145318985, -0.6040259599685669, -0.2988233268260956, 0.5364329814910889, 0.08494547009468079, -1.0991765260696411, -0.7879717350006104, 0.6195151805877686, ...
func (o *JourneyJourneyResultsParams) SetUseMultiModalCall(useMultiModalCall *bool) { o.UseMultiModalCall = useMultiModalCall }
[ -0.9488659501075745, 0.9448496103286743, 0.6477133631706238, 0.0038273611571639776, -0.5795322060585022, 0.29894381761550903, -0.0763663575053215, -0.7436131834983826, -0.36156103014945984, 0.5260737538337708, -0.15610122680664062, -0.595079243183136, -1.2370500564575195, 0.742506206035614...
func (o *JourneyJourneyResultsParams) WithVia(via *string) *JourneyJourneyResultsParams { o.SetVia(via) return o }
[ -0.8577135801315308, -0.2057250589132309, 0.3189418613910675, -0.4941946864128113, 0.45594581961631775, -0.28883346915245056, 0.8894320130348206, -0.3959401845932007, -1.3268306255340576, -0.20006482303142548, -0.2809513211250305, -0.8846648931503296, -0.5865261554718018, 0.083420805633068...
func (o *JourneyJourneyResultsParams) SetVia(via *string) { o.Via = via }
[ -1.0756890773773193, 0.028218315914273262, 0.29018911719322205, -0.21595355868339539, 0.2124287337064743, 0.20956651866436005, 0.8289076685905457, -0.3797038495540619, -1.5655217170715332, -0.26548388600349426, -0.8668369054794312, -0.06941235065460205, -1.116166114807129, 0.37855607271194...
func (o *JourneyJourneyResultsParams) WithViaName(viaName *string) *JourneyJourneyResultsParams { o.SetViaName(viaName) return o }
[ -1.127159595489502, -0.5146457552909851, 0.3080771565437317, -0.1956363320350647, -0.3492310047149658, -0.23914079368114471, 0.6084255576133728, 0.04894721135497093, -0.4267539083957672, 0.7139732837677002, -0.2632427513599396, -0.7548682689666748, -0.7617042064666748, -0.1370643973350525,...
func (o *JourneyJourneyResultsParams) SetViaName(viaName *string) { o.ViaName = viaName }
[ -1.4666531085968018, -0.43067142367362976, 0.20410755276679993, -0.16910116374492645, -0.5404717922210693, 0.11954765766859055, 0.8505030870437622, 0.10158367455005646, -0.5095487833023071, 0.43296000361442566, -0.8194261193275452, -0.2647980749607086, -1.3084986209869385, 0.11911893635988...
func (o *JourneyJourneyResultsParams) WithWalkingOptimization(walkingOptimization *bool) *JourneyJourneyResultsParams { o.SetWalkingOptimization(walkingOptimization) return o }
[ -0.2524617612361908, -0.07279004156589508, 0.14192195236682892, 0.03295784816145897, 0.015584783628582954, 0.05808890610933304, 0.5800063610076904, 0.19609080255031586, -0.535556435585022, 0.1096537634730339, -0.7033360004425049, -1.773316502571106, -0.2880321443080902, -0.0653591081500053...
func (o *JourneyJourneyResultsParams) SetWalkingOptimization(walkingOptimization *bool) { o.WalkingOptimization = walkingOptimization }
[ -0.4855678677558899, -0.1412893682718277, 0.19368065893650055, 0.056721679866313934, 0.0622587576508522, 0.3875974118709564, 0.8319488763809204, 0.21857181191444397, -0.3164769113063812, 0.15378378331661224, -1.274420976638794, -1.2114468812942505, -0.8145819902420044, 0.13801532983779907,...
func (o *JourneyJourneyResultsParams) WithWalkingSpeed(walkingSpeed *string) *JourneyJourneyResultsParams { o.SetWalkingSpeed(walkingSpeed) return o }
[ -0.146025612950325, -0.202760249376297, -0.11009853333234787, 0.5667030215263367, -0.707128643989563, 0.5172592401504517, 0.07136917859315872, -0.16517429053783417, -0.6035963892936707, -0.32519397139549255, -0.1296512931585312, -1.7881282567977905, -0.653649628162384, 0.4807421863079071, ...
func (o *JourneyJourneyResultsParams) SetWalkingSpeed(walkingSpeed *string) { o.WalkingSpeed = walkingSpeed }
[ -0.46947604417800903, -0.34039944410324097, -0.08349958807229996, 0.49708470702171326, -0.6796332597732544, 0.7997607588768005, 0.46291112899780273, 0.043438903987407684, -0.3836270868778229, -0.38104748725891113, -0.6524153351783752, -1.127633810043335, -1.336266279220581, 0.6563252806663...