github.com/grokify/go-ringcentral-client@v0.3.31/engagedigital/v1/client/model_category.go (about)

     1  /*
     2   * Engage Digital API
     3   *
     4   * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
     5   *
     6   * API version: 1.0
     7   * Generated by: OpenAPI Generator (https://openapi-generator.tech)
     8   */
     9  
    10  package engagedigital
    11  
    12  import (
    13  	"time"
    14  )
    15  
    16  type Category struct {
    17  	Color             int32     `json:"color,omitempty"`
    18  	CreatedAt         time.Time `json:"created_at,omitempty"`
    19  	Id                string    `json:"id"`
    20  	Mandatory         bool      `json:"mandatory,omitempty"`
    21  	Multiple          bool      `json:"multiple,omitempty"`
    22  	Name              string    `json:"name,omitempty"`
    23  	ParentId          string    `json:"parent_id,omitempty"`
    24  	PostQualification bool      `json:"post_qualification,omitempty"`
    25  	SourceIds         []string  `json:"source_ids,omitempty"`
    26  	Unselectable      bool      `json:"unselectable,omitempty"`
    27  	UpdatedAt         time.Time `json:"updated_at,omitempty"`
    28  }