Skip to content

Commit 3ba462d

Browse files
Add Deserialize derive to LabelResponse
Required for TalkResponse (and TalksListResponse) to derive Deserialize, since TalkResponse contains Vec<LabelResponse>. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 0be5fb3 commit 3ba462d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/models/label.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pub struct UpdateLabelRequest {
2727
pub color: Option<String>,
2828
}
2929

30-
#[derive(Debug, Serialize)]
30+
#[derive(Debug, Serialize, Deserialize)]
3131
pub struct LabelResponse {
3232
pub id: Uuid,
3333
pub name: String,

0 commit comments

Comments
 (0)