github.com/twilio/twilio-go@v1.20.1/rest/flex/v2/model_flex_v2_flex_user.go (about)

     1  /*
     2   * This code was generated by
     3   * ___ _ _ _ _ _    _ ____    ____ ____ _    ____ ____ _  _ ____ ____ ____ ___ __   __
     4   *  |  | | | | |    | |  | __ |  | |__| | __ | __ |___ |\ | |___ |__/ |__|  | |  | |__/
     5   *  |  |_|_| | |___ | |__|    |__| |  | |    |__] |___ | \| |___ |  \ |  |  | |__| |  \
     6   *
     7   * Twilio - Flex
     8   * This is the public Twilio REST API.
     9   *
    10   * NOTE: This class is auto generated by OpenAPI Generator.
    11   * https://openapi-generator.tech
    12   * Do not edit the class manually.
    13   */
    14  
    15  package openapi
    16  
    17  import (
    18  	"time"
    19  )
    20  
    21  // FlexV2FlexUser struct for FlexV2FlexUser
    22  type FlexV2FlexUser struct {
    23  	// The unique SID of the account that created the resource.
    24  	AccountSid *string `json:"account_sid,omitempty"`
    25  	// The unique ID created by Twilio to identify a Flex instance.
    26  	InstanceSid *string `json:"instance_sid,omitempty"`
    27  	// The unique SID identifier of the Twilio Unified User.
    28  	UserSid *string `json:"user_sid,omitempty"`
    29  	// The unique SID identifier of the Flex User.
    30  	FlexUserSid *string `json:"flex_user_sid,omitempty"`
    31  	// The unique SID identifier of the worker.
    32  	WorkerSid *string `json:"worker_sid,omitempty"`
    33  	// The unique SID identifier of the workspace.
    34  	WorkspaceSid *string `json:"workspace_sid,omitempty"`
    35  	// The unique SID identifier of the Flex Team.
    36  	FlexTeamSid *string `json:"flex_team_sid,omitempty"`
    37  	// First name of the User.
    38  	FirstName *string `json:"first_name,omitempty"`
    39  	// Last name of the User.
    40  	LastName *string `json:"last_name,omitempty"`
    41  	// Username of the User.
    42  	Username *string `json:"username,omitempty"`
    43  	// Email of the User.
    44  	Email *string `json:"email,omitempty"`
    45  	// Friendly name of the User.
    46  	FriendlyName *string `json:"friendly_name,omitempty"`
    47  	// The date that this user was created, given in ISO 8601 format.
    48  	CreatedDate *time.Time `json:"created_date,omitempty"`
    49  	// The date that this user was updated, given in ISO 8601 format.
    50  	UpdatedDate *time.Time `json:"updated_date,omitempty"`
    51  	// The current version of the user.
    52  	Version *int    `json:"version,omitempty"`
    53  	Url     *string `json:"url,omitempty"`
    54  }