github.com/grokify/go-ringcentral-client@v0.3.31/engagedigital/v1/client/model_channel.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 Channel struct {
    17  	CreatedAt          time.Time `json:"created_at,omitempty"`
    18  	HardCapability     int32     `json:"hard_capability,omitempty"`
    19  	Id                 string    `json:"id,omitempty"`
    20  	Label              string    `json:"label,omitempty"`
    21  	Name               string    `json:"name,omitempty"`
    22  	SoftCapability     int32     `json:"soft_capability,omitempty"`
    23  	SourceIds          []string  `json:"source_ids,omitempty"`
    24  	TaskTimeoutSeconds int32     `json:"task_timeout_seconds,omitempty"`
    25  	UpdatedAt          time.Time `json:"updated_at,omitempty"`
    26  }