github.com/blend/go-sdk@v1.20220411.3/oauth/types.go (about) 1 /* 2 3 Copyright (c) 2022 - Present. Blend Labs, Inc. All rights reserved 4 Use of this source code is governed by a MIT license that can be found in the LICENSE file. 5 6 */ 7 8 package oauth 9 10 // Any is a loose type alias to interface{} 11 type Any = interface{} 12 13 // Labels is a loose type alias to map[string]string 14 type Labels = map[string]string 15 16 // Values is a loose type alias to map[string]interface{} 17 type Values = map[string]interface{} 18 19 // Error is an error string. 20 type Error string 21 22 // Error returns the error as a string. 23 func (e Error) Error() string { return string(e) }