Skip to content

Commit

Permalink
セグメントのコードに対応
Browse files Browse the repository at this point in the history
  • Loading branch information
hanenao committed Jul 17, 2024
1 parent 4e0ec3f commit 1b580c7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions segment_tags.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ type SegmentTagResponse struct {
type SegmentTag struct {
// セグメントタグID
ID int32 `json:"id"`
// セグメントコード(利用を有効にしている場合は必須)
Code *string `json:"code,omitempty"`
// セグメントタグ名
Name string `json:"name"`
// 備考
Expand All @@ -41,6 +43,8 @@ type SegmentTag struct {
type SegmentTagParams struct {
// 事業所ID
CompanyID int32 `json:"company_id"`
// セグメントコード(利用を有効にしている場合は必須)
Code *string `json:"code,omitempty"`
// セグメントタグ名 (30文字以内)
Name string `json:"name"`
// 備考 (30文字以内)
Expand Down

0 comments on commit 1b580c7

Please sign in to comment.