We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6958555 commit 2beee12Copy full SHA for 2beee12
aries_cloudcontroller/model/service_decorator.py
@@ -25,21 +25,6 @@ class ServiceDecorator(BaseModel):
25
service_endpoint: Optional[str] = Field(None, alias="serviceEndpoint")
26
routing_keys: Optional[List[str]] = Field(None, alias="routingKeys")
27
28
- def __init__(
29
- self,
30
- *,
31
- recipient_keys: Optional[List[str]] = None,
32
- service_endpoint: Optional[str] = None,
33
- routing_keys: Optional[List[str]] = None,
34
- **kwargs,
35
- ):
36
- super().__init__(
37
- recipient_keys=recipient_keys,
38
- routing_keys=routing_keys,
39
- service_endpoint=service_endpoint,
40
41
- )
42
-
43
class Config:
44
allow_population_by_field_name = True
45
0 commit comments