Skip to content

Generator: Update SDK /services/stackitmarketplace #1260

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@
from stackit.stackitmarketplace.models.catalog_product_details_vendor import (
CatalogProductDetailsVendor,
)
from stackit.stackitmarketplace.models.catalog_product_facets_value_inner import (
CatalogProductFacetsValueInner,
)
from stackit.stackitmarketplace.models.catalog_product_highlight import (
CatalogProductHighlight,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
from stackit.stackitmarketplace.models.catalog_product_details_vendor import (
CatalogProductDetailsVendor,
)
from stackit.stackitmarketplace.models.catalog_product_facets_value_inner import (
CatalogProductFacetsValueInner,
)
from stackit.stackitmarketplace.models.catalog_product_highlight import (
CatalogProductHighlight,
)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
# coding: utf-8

"""
STACKIT Marketplace API

API to manage STACKIT Marketplace.

The version of the OpenAPI document: 1
Contact: marketplace@stackit.cloud
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
""" # noqa: E501 docstring might be too long

from __future__ import annotations

import json
import pprint
from typing import Any, ClassVar, Dict, List, Optional, Set

from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
from typing_extensions import Self


class CatalogProductFacetsValueInner(BaseModel):
"""
CatalogProductFacetsValueInner
"""

count: StrictInt = Field(description="The number of items associated with this facet value.")
value: StrictStr = Field(description="The value of the facet.")
__properties: ClassVar[List[str]] = ["count", "value"]

model_config = ConfigDict(
populate_by_name=True,
validate_assignment=True,
protected_namespaces=(),
)

def to_str(self) -> str:
"""Returns the string representation of the model using alias"""
return pprint.pformat(self.model_dump(by_alias=True))

def to_json(self) -> str:
"""Returns the JSON representation of the model using alias"""
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
return json.dumps(self.to_dict())

@classmethod
def from_json(cls, json_str: str) -> Optional[Self]:
"""Create an instance of CatalogProductFacetsValueInner from a JSON string"""
return cls.from_dict(json.loads(json_str))

def to_dict(self) -> Dict[str, Any]:
"""Return the dictionary representation of the model using alias.

This has the following differences from calling pydantic's
`self.model_dump(by_alias=True)`:

* `None` is only added to the output dict for nullable fields that
were set at model initialization. Other fields with value `None`
are ignored.
"""
excluded_fields: Set[str] = set([])

_dict = self.model_dump(
by_alias=True,
exclude=excluded_fields,
exclude_none=True,
)
return _dict

@classmethod
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
"""Create an instance of CatalogProductFacetsValueInner from a dict"""
if obj is None:
return None

if not isinstance(obj, dict):
return cls.model_validate(obj)

_obj = cls.model_validate({"count": obj.get("count"), "value": obj.get("value")})
return _obj
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
from pydantic import BaseModel, ConfigDict, Field, StrictStr
from typing_extensions import Annotated, Self

from stackit.stackitmarketplace.models.catalog_product_facets_value_inner import (
CatalogProductFacetsValueInner,
)
from stackit.stackitmarketplace.models.catalog_product_overview import (
CatalogProductOverview,
)
Expand All @@ -34,11 +37,14 @@ class ListCatalogProductsResponse(BaseModel):
cursor: StrictStr = Field(
description="A pagination cursor that represents a position in the dataset. If given, results will be returned from the item after the cursor. If not given, results will be returned from the beginning."
)
facets: Optional[Dict[str, List[CatalogProductFacetsValueInner]]] = Field(
default=None, description="A collection of facets, where each key represents a facet category."
)
items: List[CatalogProductOverview]
limit: Union[
Annotated[float, Field(le=100, strict=True, ge=0)], Annotated[int, Field(le=100, strict=True, ge=0)]
] = Field(description="Limit for returned Objects.")
__properties: ClassVar[List[str]] = ["cursor", "items", "limit"]
__properties: ClassVar[List[str]] = ["cursor", "facets", "items", "limit"]

model_config = ConfigDict(
populate_by_name=True,
Expand Down Expand Up @@ -77,6 +83,13 @@ def to_dict(self) -> Dict[str, Any]:
exclude=excluded_fields,
exclude_none=True,
)
# override the default output from pydantic by calling `to_dict()` of each value in facets (dict of array)
_field_dict_of_array = {}
if self.facets:
for _key in self.facets:
if self.facets[_key] is not None:
_field_dict_of_array[_key] = [_item.to_dict() for _item in self.facets[_key]]
_dict["facets"] = _field_dict_of_array
# override the default output from pydantic by calling `to_dict()` of each item in items (list)
_items = []
if self.items:
Expand All @@ -98,6 +111,10 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
_obj = cls.model_validate(
{
"cursor": obj.get("cursor"),
"facets": dict(
(_k, [CatalogProductFacetsValueInner.from_dict(_item) for _item in _v] if _v is not None else None)
for _k, _v in obj.get("facets", {}).items()
),
"items": (
[CatalogProductOverview.from_dict(_item) for _item in obj["items"]]
if obj.get("items") is not None
Expand Down
Loading