github.com/twilio/twilio-go@v1.20.1/rest/messaging/v1/model_messaging_v1_brand_registrations.go (about)

     1  /*
     2   * This code was generated by
     3   * ___ _ _ _ _ _    _ ____    ____ ____ _    ____ ____ _  _ ____ ____ ____ ___ __   __
     4   *  |  | | | | |    | |  | __ |  | |__| | __ | __ |___ |\ | |___ |__/ |__|  | |  | |__/
     5   *  |  |_|_| | |___ | |__|    |__| |  | |    |__] |___ | \| |___ |  \ |  |  | |__| |  \
     6   *
     7   * Twilio - Messaging
     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  // MessagingV1BrandRegistrations struct for MessagingV1BrandRegistrations
    22  type MessagingV1BrandRegistrations struct {
    23  	// The unique string to identify Brand Registration.
    24  	Sid *string `json:"sid,omitempty"`
    25  	// The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Brand Registration resource.
    26  	AccountSid *string `json:"account_sid,omitempty"`
    27  	// A2P Messaging Profile Bundle BundleSid.
    28  	CustomerProfileBundleSid *string `json:"customer_profile_bundle_sid,omitempty"`
    29  	// A2P Messaging Profile Bundle BundleSid.
    30  	A2pProfileBundleSid *string `json:"a2p_profile_bundle_sid,omitempty"`
    31  	// The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
    32  	DateCreated *time.Time `json:"date_created,omitempty"`
    33  	// The date and time in GMT when the resource was last updated specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
    34  	DateUpdated *time.Time `json:"date_updated,omitempty"`
    35  	// Type of brand. One of: \"STANDARD\", \"SOLE_PROPRIETOR\". SOLE_PROPRIETOR is for the low volume, SOLE_PROPRIETOR campaign use case. There can only be one SOLE_PROPRIETOR campaign created per SOLE_PROPRIETOR brand. STANDARD is for all other campaign use cases. Multiple campaign use cases can be created per STANDARD brand.
    36  	BrandType *string `json:"brand_type,omitempty"`
    37  	Status    *string `json:"status,omitempty"`
    38  	// Campaign Registry (TCR) Brand ID. Assigned only after successful brand registration.
    39  	TcrId *string `json:"tcr_id,omitempty"`
    40  	// DEPRECATED. A reason why brand registration has failed. Only applicable when status is FAILED.
    41  	FailureReason *string `json:"failure_reason,omitempty"`
    42  	// A list of errors that occurred during the brand registration process.
    43  	Errors *[]interface{} `json:"errors,omitempty"`
    44  	// The absolute URL of the Brand Registration resource.
    45  	Url *string `json:"url,omitempty"`
    46  	// The secondary vetting score if it was done. Otherwise, it will be the brand score if it's returned from TCR. It may be null if no score is available.
    47  	BrandScore *int `json:"brand_score,omitempty"`
    48  	// DEPRECATED. Feedback on how to improve brand score
    49  	BrandFeedback  *[]string `json:"brand_feedback,omitempty"`
    50  	IdentityStatus *string   `json:"identity_status,omitempty"`
    51  	// Publicly traded company identified in the Russell 3000 Index
    52  	Russell3000 *bool `json:"russell_3000,omitempty"`
    53  	// Identified as a government entity
    54  	GovernmentEntity *bool `json:"government_entity,omitempty"`
    55  	// Nonprofit organization tax-exempt status per section 501 of the U.S. tax code.
    56  	TaxExemptStatus *string `json:"tax_exempt_status,omitempty"`
    57  	// A flag to disable automatic secondary vetting for brands which it would otherwise be done.
    58  	SkipAutomaticSecVet *bool `json:"skip_automatic_sec_vet,omitempty"`
    59  	// A boolean that specifies whether brand should be a mock or not. If true, brand will be registered as a mock brand. Defaults to false if no value is provided.
    60  	Mock  *bool                   `json:"mock,omitempty"`
    61  	Links *map[string]interface{} `json:"links,omitempty"`
    62  }