Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Generator: Update SDK /services/stackitmarketplace#1237

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Closed
Changes fromall 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 numberDiff line numberDiff 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 DownExpand Up@@ -103,6 +106,7 @@ class CatalogProductDetail(BaseModel):
"documentationUrl",
"email",
"highlights",
"industries",
"isProductListing",
"lifecycleState",
"logo",
Expand DownExpand 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

[8]ページ先頭

©2009-2025 Movatter.jp