airbyte_cdk.sources.declarative.requesters.request_path

 1#
 2# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
 3#
 4
 5from dataclasses import InitVar, dataclass
 6from typing import Any, Mapping
 7
 8
 9@dataclass
10class RequestPath:
11    """
12    Describes that a component value should be inserted into the path
13    """
14
15    parameters: InitVar[Mapping[str, Any]]
@dataclass
class RequestPath:
10@dataclass
11class RequestPath:
12    """
13    Describes that a component value should be inserted into the path
14    """
15
16    parameters: InitVar[Mapping[str, Any]]

Describes that a component value should be inserted into the path

RequestPath(parameters: dataclasses.InitVar[typing.Mapping[str, typing.Any]])
parameters: dataclasses.InitVar[typing.Mapping[str, typing.Any]]