Coverage for mindsdb / integrations / handlers / google_content_shopping_handler / connection_args.py: 0%

4 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-21 00:36 +0000

1from collections import OrderedDict 

2 

3from mindsdb.integrations.libs.const import HANDLER_CONNECTION_ARG_TYPE as ARG_TYPE 

4 

5 

6connection_args = OrderedDict( 

7 credentials={ 

8 'type': ARG_TYPE.PATH, 

9 'description': 'The path to the credentials file. If not specified, the default credentials are used.' 

10 }, 

11 merchant_id={ 

12 'type': ARG_TYPE.STR, 

13 'description': 'The merchant ID for the Google Content API.' 

14 }, 

15) 

16 

17connection_args_example = OrderedDict( 

18 credentials='/path/to/credentials.json', 

19 merchant_id='1234567890' 

20)