github.com/twilio/twilio-go@v1.20.1/rest/numbers/v2/model_numbers_v2_bulk_hosted_number_order.go (about)

     1  /*
     2   * This code was generated by
     3   * ___ _ _ _ _ _    _ ____    ____ ____ _    ____ ____ _  _ ____ ____ ____ ___ __   __
     4   *  |  | | | | |    | |  | __ |  | |__| | __ | __ |___ |\ | |___ |__/ |__|  | |  | |__/
     5   *  |  |_|_| | |___ | |__|    |__| |  | |    |__] |___ | \| |___ |  \ |  |  | |__| |  \
     6   *
     7   * Twilio - Numbers
     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  // NumbersV2BulkHostedNumberOrder struct for NumbersV2BulkHostedNumberOrder
    22  type NumbersV2BulkHostedNumberOrder struct {
    23  	// A 34 character string that uniquely identifies this BulkHostedNumberOrder.
    24  	BulkHostingSid *string `json:"bulk_hosting_sid,omitempty"`
    25  	RequestStatus  *string `json:"request_status,omitempty"`
    26  	// A 128 character string that is a human-readable text that describes this resource.
    27  	FriendlyName *string `json:"friendly_name,omitempty"`
    28  	// Email address used for send notifications about this Bulk hosted number request.
    29  	NotificationEmail *string `json:"notification_email,omitempty"`
    30  	// The date this resource was created, given as [GMT RFC 2822](http://www.ietf.org/rfc/rfc2822.txt) format.
    31  	DateCreated *time.Time `json:"date_created,omitempty"`
    32  	// The date that this resource was completed, given as [GMT RFC 2822](http://www.ietf.org/rfc/rfc2822.txt) format.
    33  	DateCompleted *time.Time `json:"date_completed,omitempty"`
    34  	// The URL of this BulkHostedNumberOrder resource.
    35  	Url *string `json:"url,omitempty"`
    36  	// The total count of phone numbers in this Bulk hosting request.
    37  	TotalCount *int `json:"total_count,omitempty"`
    38  	// Contains a list of all the individual hosting orders and their information, for this Bulk request. Each result object is grouped by its order status. To see a complete list of order status, please check 'https://www.twilio.com/docs/phone-numbers/hosted-numbers/hosted-numbers-api/hosted-number-order-resource#status-values'.
    39  	Results *[]interface{} `json:"results,omitempty"`
    40  }