github.com/twilio/twilio-go@v1.20.1/rest/supersim/v1/model_supersim_v1_network.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  // SupersimV1Network struct for SupersimV1Network
    18  type SupersimV1Network struct {
    19  	// The unique string that we created to identify the Network resource.
    20  	Sid *string `json:"sid,omitempty"`
    21  	// A human readable identifier of this resource.
    22  	FriendlyName *string `json:"friendly_name,omitempty"`
    23  	// The absolute URL of the Network resource.
    24  	Url *string `json:"url,omitempty"`
    25  	// The [ISO country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) of the Network resource.
    26  	IsoCountry *string `json:"iso_country,omitempty"`
    27  	// Array of objects identifying the [MCC-MNCs](https://en.wikipedia.org/wiki/Mobile_country_code) that are included in the Network resource.
    28  	Identifiers *[]interface{} `json:"identifiers,omitempty"`
    29  }