|
| 1 | +/*--------------------------------------------------------------------------------------------- |
| 2 | + * Copyright (c) Microsoft Corporation. All rights reserved. |
| 3 | + *--------------------------------------------------------------------------------------------*/ |
| 4 | + |
| 5 | +// AUTO-GENERATED FILE - DO NOT EDIT |
| 6 | +// Generated from: session-events.schema.json |
| 7 | + |
| 8 | +package com.github.copilot.generated; |
| 9 | + |
| 10 | +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
| 11 | +import com.fasterxml.jackson.annotation.JsonInclude; |
| 12 | +import com.fasterxml.jackson.annotation.JsonProperty; |
| 13 | +import java.util.List; |
| 14 | +import java.util.Map; |
| 15 | +import javax.annotation.processing.Generated; |
| 16 | + |
| 17 | +/** |
| 18 | + * Schema for the `CanvasRegistryChangedCanvas` type. |
| 19 | + * |
| 20 | + * @since 1.0.0 |
| 21 | + */ |
| 22 | +@javax.annotation.processing.Generated("copilot-sdk-codegen") |
| 23 | +@JsonInclude(JsonInclude.Include.NON_NULL) |
| 24 | +@JsonIgnoreProperties(ignoreUnknown = true) |
| 25 | +public record CanvasRegistryChangedCanvas( |
| 26 | + /** Owning provider identifier */ |
| 27 | + @JsonProperty("extensionId") String extensionId, |
| 28 | + /** Owning extension display name, when available */ |
| 29 | + @JsonProperty("extensionName") String extensionName, |
| 30 | + /** Provider-local canvas identifier */ |
| 31 | + @JsonProperty("canvasId") String canvasId, |
| 32 | + /** Human-readable canvas name */ |
| 33 | + @JsonProperty("displayName") String displayName, |
| 34 | + /** Short, single-sentence description shown to the agent in canvas catalogs. */ |
| 35 | + @JsonProperty("description") String description, |
| 36 | + /** JSON Schema for canvas open input */ |
| 37 | + @JsonProperty("inputSchema") Map<String, Object> inputSchema, |
| 38 | + /** Actions the agent or host may invoke */ |
| 39 | + @JsonProperty("actions") List<CanvasRegistryChangedCanvasAction> actions |
| 40 | +) { |
| 41 | +} |
0 commit comments