97
98
// SaveSearchAttributes mocks base method.
99
>
func (m *MockManager) SaveSearchAttributes(ctx context.Context, indexName string, newCustomSearchAttributes map[string]enums.IndexedValueType) error {
search_attribute_mock.go
100
>
m.ctrl.T.Helper()
101
>
ret := m.ctrl.Call(m, "SaveSearchAttributes", ctx, indexName, newCustomSearchAttributes)
102
>
ret0, _ := ret[0].(error)
103
>
return ret0
104
>
}
105
106
// SaveSearchAttributes indicates an expected call of SaveSearchAttributes.
107
>
func (mr *MockManagerMockRecorder) SaveSearchAttributes(ctx, indexName, newCustomSearchAttributes any) *gomock.Call {
search_attribute_mock.go
108
>
mr.mock.ctrl.T.Helper()
109
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SaveSearchAttributes", reflect.TypeOf((*MockManager)(nil).SaveSearchAttributes), ctx, indexName, newCustomSearchAttributes)
110
>
}