Merge pull request #2179 from armsnyder/add-missing-set-val

feat: add some missing SetVal methods
This commit is contained in:
Vladimir Mihailenco 2022-08-08 10:02:07 +03:00 committed by GitHub
commit b4a0726f55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

View File

@ -1093,6 +1093,10 @@ func NewKeyValueSliceCmd(ctx context.Context, args ...interface{}) *KeyValueSlic
} }
} }
func (cmd *KeyValueSliceCmd) SetVal(val []KeyValue) {
cmd.val = val
}
func (cmd *KeyValueSliceCmd) Val() []KeyValue { func (cmd *KeyValueSliceCmd) Val() []KeyValue {
return cmd.val return cmd.val
} }
@ -3117,6 +3121,10 @@ func NewGeoSearchLocationCmd(
} }
} }
func (cmd *GeoSearchLocationCmd) SetVal(val []GeoLocation) {
cmd.val = val
}
func (cmd *GeoSearchLocationCmd) Val() []GeoLocation { func (cmd *GeoSearchLocationCmd) Val() []GeoLocation {
return cmd.val return cmd.val
} }
@ -3573,6 +3581,10 @@ func NewMapStringInterfaceCmd(ctx context.Context, args ...interface{}) *MapStri
} }
} }
func (cmd *MapStringInterfaceCmd) SetVal(val map[string]interface{}) {
cmd.val = val
}
func (cmd *MapStringInterfaceCmd) Val() map[string]interface{} { func (cmd *MapStringInterfaceCmd) Val() map[string]interface{} {
return cmd.val return cmd.val
} }
@ -3633,6 +3645,10 @@ func NewMapStringStringSliceCmd(ctx context.Context, args ...interface{}) *MapSt
} }
} }
func (cmd *MapStringStringSliceCmd) SetVal(val []map[string]string) {
cmd.val = val
}
func (cmd *MapStringStringSliceCmd) Val() []map[string]string { func (cmd *MapStringStringSliceCmd) Val() []map[string]string {
return cmd.val return cmd.val
} }