github.com/twilio/twilio-go@v1.20.1/rest/supersim/v1/model_supersim_v1_settings_update.go (about)

     1  /*
     2   * This code was generated by
     3   * ___ _ _ _ _ _    _ ____    ____ ____ _    ____ ____ _  _ ____ ____ ____ ___ __   __
     4   *  |  | | | | |    | |  | __ |  | |__| | __ | __ |___ |\ | |___ |__/ |__|  | |  | |__/
     5   *  |  |_|_| | |___ | |__|    |__| |  | |    |__] |___ | \| |___ |  \ |  |  | |__| |  \
     6   *
     7   * Twilio - Supersim
     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  // SupersimV1SettingsUpdate struct for SupersimV1SettingsUpdate
    22  type SupersimV1SettingsUpdate struct {
    23  	// The unique identifier of this Settings Update.
    24  	Sid *string `json:"sid,omitempty"`
    25  	// The [ICCID](https://en.wikipedia.org/wiki/SIM_card#ICCID) associated with the SIM.
    26  	Iccid *string `json:"iccid,omitempty"`
    27  	// The SID of the Super SIM to which this Settings Update was applied.
    28  	SimSid *string `json:"sim_sid,omitempty"`
    29  	Status *string `json:"status,omitempty"`
    30  	// Array containing the different Settings Packages that will be applied to the SIM after the update completes. Each object within the array indicates the name and the version of the Settings Package that will be on the SIM if the update is successful.
    31  	Packages *[]interface{} `json:"packages,omitempty"`
    32  	// The time, given in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format, when the update successfully completed and the new settings were applied to the SIM.
    33  	DateCompleted *time.Time `json:"date_completed,omitempty"`
    34  	// The date that this Settings Update was created, given in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
    35  	DateCreated *time.Time `json:"date_created,omitempty"`
    36  	// The date that this Settings Update was updated, given in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
    37  	DateUpdated *time.Time `json:"date_updated,omitempty"`
    38  }