9 lines
211 B
Go
9 lines
211 B
Go
package settings
|
|
|
|
type SettingUpdateInput struct {
|
|
Description *string `json:"description"`
|
|
Value *string `json:"value"`
|
|
Enabled *bool `json:"enabled"`
|
|
AppService *string `json:"app_service"`
|
|
}
|