package studio type StudioStatus string const ( Active StudioStatus = "active" Inactive StudioStatus = "inactive" ) func (b StudioStatus) toString() string { return string(b) }