github.com/grokify/go-ringcentral-client@v0.3.31/engagedigital/v1/client/model_task.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 Task struct {
    17  	AcceptedAt     time.Time `json:"accepted_at,omitempty"`
    18  	AgentIds       []string  `json:"agent_ids,omitempty"`
    19  	ChannelId      string    `json:"channel_id,omitempty"`
    20  	CompletedAt    time.Time `json:"completed_at,omitempty"`
    21  	ContentId      string    `json:"content_id,omitempty"`
    22  	CreatedAt      time.Time `json:"created_at,omitempty"`
    23  	ExpireAt       time.Time `json:"expire_at,omitempty"`
    24  	Id             string    `json:"id"`
    25  	InterventionId string    `json:"intervention_id,omitempty"`
    26  	LockedAt       time.Time `json:"locked_at,omitempty"`
    27  	Priority       int32     `json:"priority,omitempty"`
    28  	Step           string    `json:"step,omitempty"`
    29  	ThreadId       string    `json:"thread_id,omitempty"`
    30  	TransferedAt   time.Time `json:"transfered_at,omitempty"`
    31  	UpdatedAt      time.Time `json:"updated_at,omitempty"`
    32  }