Skip to content

Generator: Update SDK /services/stackitmarketplace #1242

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
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 @@ -66,6 +66,9 @@ class CatalogProductDetail(BaseModel):
)
email: Optional[StrictStr] = Field(default=None, description="A e-mail address.")
highlights: List[CatalogProductHighlight] = Field(description="The list of highlights.")
industries: Optional[List[StrictStr]] = Field(
default=None, description="The list of industries associated to the product."
)
is_product_listing: StrictBool = Field(
description="If true, the product is not fully integrated but only listed. Product listings may not have prices and support information.",
alias="isProductListing",
Expand Down Expand Up @@ -103,6 +106,7 @@ class CatalogProductDetail(BaseModel):
"documentationUrl",
"email",
"highlights",
"industries",
"isProductListing",
"lifecycleState",
"logo",
Expand Down Expand Up @@ -253,6 +257,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
if obj.get("highlights") is not None
else None
),
"industries": obj.get("industries"),
"isProductListing": obj.get("isProductListing"),
"lifecycleState": obj.get("lifecycleState"),
"logo": obj.get("logo"),
Expand Down
Loading