Skip to content

Commit

Permalink
Pre-commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Knucklessg1 committed May 21, 2024
1 parent 88d4a53 commit 34667e6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions servicenow_api/servicenow_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -2067,8 +2067,12 @@ class Response(BaseModel):
default=None, description="List of services related to the identified service."
)
error: Optional[Any] = None
status_code: Union[str, int] = Field(default=None, description="Response status code")
json: Optional[Union[List, Dict]] = Field(default=None, description="Response JSON data")
status_code: Union[str, int] = Field(
default=None, description="Response status code"
)
json: Optional[Union[List, Dict]] = Field(
default=None, description="Response JSON data"
)
raw: Optional[bytes] = Field(default=None, description="Response Raw bytes")

@field_validator("service")
Expand Down

0 comments on commit 34667e6

Please sign in to comment.