Documentation ¶
Overview ¶
Package consumersurveys provides access to the Consumer Surveys API.
Usage example:
import "google.golang.org/api/consumersurveys/v2" ... consumersurveysService, err := consumersurveys.New(oauthHttpClient)
Index ¶
- Constants
- type FieldMask
- type MobileAppPanel
- type MobileAppPanelsListResponse
- type MobileapppanelsGetCall
- func (c *MobileapppanelsGetCall) Context(ctx context.Context) *MobileapppanelsGetCall
- func (c *MobileapppanelsGetCall) Do(opts ...googleapi.CallOption) (*MobileAppPanel, error)
- func (c *MobileapppanelsGetCall) Fields(s ...googleapi.Field) *MobileapppanelsGetCall
- func (c *MobileapppanelsGetCall) IfNoneMatch(entityTag string) *MobileapppanelsGetCall
- type MobileapppanelsListCall
- func (c *MobileapppanelsListCall) Context(ctx context.Context) *MobileapppanelsListCall
- func (c *MobileapppanelsListCall) Do(opts ...googleapi.CallOption) (*MobileAppPanelsListResponse, error)
- func (c *MobileapppanelsListCall) Fields(s ...googleapi.Field) *MobileapppanelsListCall
- func (c *MobileapppanelsListCall) IfNoneMatch(entityTag string) *MobileapppanelsListCall
- func (c *MobileapppanelsListCall) MaxResults(maxResults int64) *MobileapppanelsListCall
- func (c *MobileapppanelsListCall) StartIndex(startIndex int64) *MobileapppanelsListCall
- func (c *MobileapppanelsListCall) Token(token string) *MobileapppanelsListCall
- type MobileapppanelsService
- type MobileapppanelsUpdateCall
- type PageInfo
- type ResultsGetCall
- func (c *ResultsGetCall) Context(ctx context.Context) *ResultsGetCall
- func (c *ResultsGetCall) Do(opts ...googleapi.CallOption) (*SurveyResults, error)
- func (c *ResultsGetCall) Download(opts ...googleapi.CallOption) (*http.Response, error)
- func (c *ResultsGetCall) Fields(s ...googleapi.Field) *ResultsGetCall
- func (c *ResultsGetCall) IfNoneMatch(entityTag string) *ResultsGetCall
- type ResultsGetRequest
- type ResultsMask
- type ResultsService
- type Service
- type Survey
- type SurveyAudience
- type SurveyCost
- type SurveyQuestion
- type SurveyQuestionImage
- type SurveyResults
- type SurveysDeleteCall
- type SurveysDeleteResponse
- type SurveysGetCall
- type SurveysInsertCall
- type SurveysListCall
- func (c *SurveysListCall) Context(ctx context.Context) *SurveysListCall
- func (c *SurveysListCall) Do(opts ...googleapi.CallOption) (*SurveysListResponse, error)
- func (c *SurveysListCall) Fields(s ...googleapi.Field) *SurveysListCall
- func (c *SurveysListCall) IfNoneMatch(entityTag string) *SurveysListCall
- func (c *SurveysListCall) MaxResults(maxResults int64) *SurveysListCall
- func (c *SurveysListCall) StartIndex(startIndex int64) *SurveysListCall
- func (c *SurveysListCall) Token(token string) *SurveysListCall
- type SurveysListResponse
- type SurveysService
- func (r *SurveysService) Delete(surveyUrlId string) *SurveysDeleteCall
- func (r *SurveysService) Get(surveyUrlId string) *SurveysGetCall
- func (r *SurveysService) Insert(survey *Survey) *SurveysInsertCall
- func (r *SurveysService) List() *SurveysListCall
- func (r *SurveysService) Start(resourceId string, surveysstartrequest *SurveysStartRequest) *SurveysStartCall
- func (r *SurveysService) Stop(resourceId string) *SurveysStopCall
- func (r *SurveysService) Update(surveyUrlId string, survey *Survey) *SurveysUpdateCall
- type SurveysStartCall
- type SurveysStartRequest
- type SurveysStartResponse
- type SurveysStopCall
- type SurveysStopResponse
- type SurveysUpdateCall
- type TokenPagination
Constants ¶
const ( // View and edit your surveys and results ConsumersurveysScope = "https://www.googleapis.com/auth/consumersurveys" // View the results for your surveys ConsumersurveysReadonlyScope = "https://www.googleapis.com/auth/consumersurveys.readonly" // View your email address UserinfoEmailScope = "https://www.googleapis.com/auth/userinfo.email" )
OAuth2 scopes used by this API.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FieldMask ¶
type FieldMask struct { Fields []*FieldMask `json:"fields,omitempty"` Id int64 `json:"id,omitempty"` // ForceSendFields is a list of field names (e.g. "Fields") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
func (*FieldMask) MarshalJSON ¶
type MobileAppPanel ¶
type MobileAppPanel struct { // Country: Country code for the country of the users that the panel // contains. Uses standard ISO 3166-1 2-character language codes. For // instance, 'US' for the United States, and 'GB' for the United // Kingdom. Any survey created targeting this panel must also target the // corresponding country. Country string `json:"country,omitempty"` // IsPublicPanel: Whether or not the panel is accessible to all API // users. IsPublicPanel bool `json:"isPublicPanel,omitempty"` // Language: Language code that the panel can target. For instance, // 'en-US'. Uses standard BCP47 language codes. See specification. Any // survey created targeting this panel must also target the // corresponding language. Language string `json:"language,omitempty"` // MobileAppPanelId: Unique panel ID string. This corresponds to the // mobile_app_panel_id used in Survey Insert requests. MobileAppPanelId string `json:"mobileAppPanelId,omitempty"` // Name: Human readable name of the audience panel. Name string `json:"name,omitempty"` // Owners: List of email addresses for users who can target members of // this panel. Must contain at least the address of the user making the // API call for panels that are not public. This field will be empty for // public panels. Owners []string `json:"owners,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Country") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
MobileAppPanel: Representation of an individual pre-defined panel object defining a targeted audience of opinion rewards mobile app users.
func (*MobileAppPanel) MarshalJSON ¶
func (s *MobileAppPanel) MarshalJSON() ([]byte, error)
type MobileAppPanelsListResponse ¶
type MobileAppPanelsListResponse struct { PageInfo *PageInfo `json:"pageInfo,omitempty"` // RequestId: Unique request ID used for logging and debugging. Please // include in any error reporting or troubleshooting requests. RequestId string `json:"requestId,omitempty"` // Resources: An individual predefined panel of Opinion Rewards mobile // users. Resources []*MobileAppPanel `json:"resources,omitempty"` TokenPagination *TokenPagination `json:"tokenPagination,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "PageInfo") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
func (*MobileAppPanelsListResponse) MarshalJSON ¶
func (s *MobileAppPanelsListResponse) MarshalJSON() ([]byte, error)
type MobileapppanelsGetCall ¶
type MobileapppanelsGetCall struct {
// contains filtered or unexported fields
}
func (*MobileapppanelsGetCall) Context ¶
func (c *MobileapppanelsGetCall) Context(ctx context.Context) *MobileapppanelsGetCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*MobileapppanelsGetCall) Do ¶
func (c *MobileapppanelsGetCall) Do(opts ...googleapi.CallOption) (*MobileAppPanel, error)
Do executes the "consumersurveys.mobileapppanels.get" call. Exactly one of *MobileAppPanel or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *MobileAppPanel.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*MobileapppanelsGetCall) Fields ¶
func (c *MobileapppanelsGetCall) Fields(s ...googleapi.Field) *MobileapppanelsGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*MobileapppanelsGetCall) IfNoneMatch ¶
func (c *MobileapppanelsGetCall) IfNoneMatch(entityTag string) *MobileapppanelsGetCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
type MobileapppanelsListCall ¶
type MobileapppanelsListCall struct {
// contains filtered or unexported fields
}
func (*MobileapppanelsListCall) Context ¶
func (c *MobileapppanelsListCall) Context(ctx context.Context) *MobileapppanelsListCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*MobileapppanelsListCall) Do ¶
func (c *MobileapppanelsListCall) Do(opts ...googleapi.CallOption) (*MobileAppPanelsListResponse, error)
Do executes the "consumersurveys.mobileapppanels.list" call. Exactly one of *MobileAppPanelsListResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *MobileAppPanelsListResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*MobileapppanelsListCall) Fields ¶
func (c *MobileapppanelsListCall) Fields(s ...googleapi.Field) *MobileapppanelsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*MobileapppanelsListCall) IfNoneMatch ¶
func (c *MobileapppanelsListCall) IfNoneMatch(entityTag string) *MobileapppanelsListCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
func (*MobileapppanelsListCall) MaxResults ¶
func (c *MobileapppanelsListCall) MaxResults(maxResults int64) *MobileapppanelsListCall
MaxResults sets the optional parameter "maxResults":
func (*MobileapppanelsListCall) StartIndex ¶
func (c *MobileapppanelsListCall) StartIndex(startIndex int64) *MobileapppanelsListCall
StartIndex sets the optional parameter "startIndex":
func (*MobileapppanelsListCall) Token ¶
func (c *MobileapppanelsListCall) Token(token string) *MobileapppanelsListCall
Token sets the optional parameter "token":
type MobileapppanelsService ¶
type MobileapppanelsService struct {
// contains filtered or unexported fields
}
func NewMobileapppanelsService ¶
func NewMobileapppanelsService(s *Service) *MobileapppanelsService
func (*MobileapppanelsService) Get ¶
func (r *MobileapppanelsService) Get(panelId string) *MobileapppanelsGetCall
Get: Retrieves a MobileAppPanel that is available to the authenticated user.
func (*MobileapppanelsService) List ¶
func (r *MobileapppanelsService) List() *MobileapppanelsListCall
List: Lists the MobileAppPanels available to the authenticated user.
func (*MobileapppanelsService) Update ¶
func (r *MobileapppanelsService) Update(panelId string, mobileapppanel *MobileAppPanel) *MobileapppanelsUpdateCall
Update: Updates a MobileAppPanel. Currently the only property that can be updated is the owners property.
type MobileapppanelsUpdateCall ¶
type MobileapppanelsUpdateCall struct {
// contains filtered or unexported fields
}
func (*MobileapppanelsUpdateCall) Context ¶
func (c *MobileapppanelsUpdateCall) Context(ctx context.Context) *MobileapppanelsUpdateCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*MobileapppanelsUpdateCall) Do ¶
func (c *MobileapppanelsUpdateCall) Do(opts ...googleapi.CallOption) (*MobileAppPanel, error)
Do executes the "consumersurveys.mobileapppanels.update" call. Exactly one of *MobileAppPanel or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *MobileAppPanel.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*MobileapppanelsUpdateCall) Fields ¶
func (c *MobileapppanelsUpdateCall) Fields(s ...googleapi.Field) *MobileapppanelsUpdateCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type PageInfo ¶
type PageInfo struct { ResultPerPage int64 `json:"resultPerPage,omitempty"` StartIndex int64 `json:"startIndex,omitempty"` TotalResults int64 `json:"totalResults,omitempty"` // ForceSendFields is a list of field names (e.g. "ResultPerPage") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
func (*PageInfo) MarshalJSON ¶
type ResultsGetCall ¶
type ResultsGetCall struct {
// contains filtered or unexported fields
}
func (*ResultsGetCall) Context ¶
func (c *ResultsGetCall) Context(ctx context.Context) *ResultsGetCall
Context sets the context to be used in this call's Do and Download methods. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ResultsGetCall) Do ¶
func (c *ResultsGetCall) Do(opts ...googleapi.CallOption) (*SurveyResults, error)
Do executes the "consumersurveys.results.get" call. Exactly one of *SurveyResults or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *SurveyResults.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ResultsGetCall) Download ¶
func (c *ResultsGetCall) Download(opts ...googleapi.CallOption) (*http.Response, error)
Download fetches the API endpoint's "media" value, instead of the normal API response value. If the returned error is nil, the Response is guaranteed to have a 2xx status code. Callers must close the Response.Body as usual.
func (*ResultsGetCall) Fields ¶
func (c *ResultsGetCall) Fields(s ...googleapi.Field) *ResultsGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ResultsGetCall) IfNoneMatch ¶
func (c *ResultsGetCall) IfNoneMatch(entityTag string) *ResultsGetCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
type ResultsGetRequest ¶
type ResultsGetRequest struct { ResultMask *ResultsMask `json:"resultMask,omitempty"` // ForceSendFields is a list of field names (e.g. "ResultMask") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
func (*ResultsGetRequest) MarshalJSON ¶
func (s *ResultsGetRequest) MarshalJSON() ([]byte, error)
type ResultsMask ¶
type ResultsMask struct { Fields []*FieldMask `json:"fields,omitempty"` Projection string `json:"projection,omitempty"` // ForceSendFields is a list of field names (e.g. "Fields") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
func (*ResultsMask) MarshalJSON ¶
func (s *ResultsMask) MarshalJSON() ([]byte, error)
type ResultsService ¶
type ResultsService struct {
// contains filtered or unexported fields
}
func NewResultsService ¶
func NewResultsService(s *Service) *ResultsService
func (*ResultsService) Get ¶
func (r *ResultsService) Get(surveyUrlId string, resultsgetrequest *ResultsGetRequest) *ResultsGetCall
Get: Retrieves any survey results that have been produced so far. Results are formatted as an Excel file.
type Service ¶
type Service struct { BasePath string // API endpoint base URL UserAgent string // optional additional User-Agent fragment Mobileapppanels *MobileapppanelsService Results *ResultsService Surveys *SurveysService // contains filtered or unexported fields }
type Survey ¶
type Survey struct { // Audience: Targeting-criteria message containing demographic // information Audience *SurveyAudience `json:"audience,omitempty"` // Cost: Cost to run the survey and collect the necessary number of // responses. Cost *SurveyCost `json:"cost,omitempty"` // CustomerData: Additional information to store on behalf of the API // consumer and associate with this question. This binary blob is // treated as opaque. This field is limited to 64K bytes. CustomerData string `json:"customerData,omitempty"` // Description: Text description of the survey. Description string `json:"description,omitempty"` // Owners: List of email addresses for survey owners. Must contain at // least the address of the user making the API call. Owners []string `json:"owners,omitempty"` // Questions: List of questions defining the survey. Questions []*SurveyQuestion `json:"questions,omitempty"` // State: State that the survey is in. State string `json:"state,omitempty"` // SurveyUrlId: Unique survey ID, that is viewable in the URL of the // Survey Creator UI SurveyUrlId string `json:"surveyUrlId,omitempty"` // Title: Optional name that will be given to the survey. Title string `json:"title,omitempty"` // WantedResponseCount: Number of responses desired for the survey. WantedResponseCount int64 `json:"wantedResponseCount,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Audience") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
Survey: Representation of an individual survey object.
func (*Survey) MarshalJSON ¶
type SurveyAudience ¶
type SurveyAudience struct { // Ages: Optional list of age buckets to target. Supported age buckets // are: ['18-24', '25-34', '35-44', '45-54', '55-64', '65+'] Ages []string `json:"ages,omitempty"` // Country: Required country code that surveys should be targeted to. // Accepts standard ISO 3166-1 2 character language codes. For instance, // 'US' for the United States, and 'GB' for the United Kingdom. Country string `json:"country,omitempty"` // CountrySubdivision: Country subdivision (states/provinces/etc) that // surveys should be targeted to. For all countries except GB, // ISO-3166-2 subdivision code is required (eg. 'US-OH' for Ohio, United // States). For GB, NUTS 1 statistical region codes for the United // Kingdom is required (eg. 'UK-UKC' for North East England). CountrySubdivision string `json:"countrySubdivision,omitempty"` // Gender: Optional gender to target. Gender string `json:"gender,omitempty"` // Languages: Language code that surveys should be targeted to. For // instance, 'en-US'. Surveys may target bilingual users by specifying a // list of language codes (for example, 'de' and 'en-US'). In that case, // all languages will be used for targeting users but the survey content // (which is displayed) must match the first language listed. Accepts // standard BCP47 language codes. See specification. Languages []string `json:"languages,omitempty"` // MobileAppPanelId: Key for predefined panel that causes survey to be // sent to a predefined set of Opinion Rewards App users. You must set // PopulationSource to ANDROID_APP_PANEL to use this field. MobileAppPanelId string `json:"mobileAppPanelId,omitempty"` // PopulationSource: Online population source where the respondents are // sampled from. PopulationSource string `json:"populationSource,omitempty"` // ForceSendFields is a list of field names (e.g. "Ages") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
SurveyAudience: Specifications for the target audience of a survey run through the API.
func (*SurveyAudience) MarshalJSON ¶
func (s *SurveyAudience) MarshalJSON() ([]byte, error)
type SurveyCost ¶
type SurveyCost struct { // CostPerResponseNanos: Cost per survey response in nano units of the // given currency. To get the total cost for a survey, multiply this // value by wanted_response_count. CostPerResponseNanos int64 `json:"costPerResponseNanos,omitempty,string"` // CurrencyCode: Currency code that the cost is given in. CurrencyCode string `json:"currencyCode,omitempty"` // MaxCostPerResponseNanos: Threshold to start a survey automatically if // the quoted price is at most this value. When a survey has a Screener // (threshold) question, it must go through an incidence pricing test to // determine the final cost per response. Typically you will have to // make a followup call to start the survey giving the final computed // cost per response. If the survey has no threshold_answers, setting // this property will return an error. By specifying this property, you // indicate the max price per response you are willing to pay in advance // of the incidence test. If the price turns out to be lower than the // specified value, the survey will begin immediately and you will be // charged at the rate determined by the incidence pricing test. If the // price turns out to be greater than the specified value the survey // will not be started and you will instead be notified what price was // determined by the incidence test. At that point, you must raise the // value of this property to be greater than or equal to that cost // before attempting to start the survey again. This will immediately // start the survey as long the incidence test was run within the last // 21 days. MaxCostPerResponseNanos int64 `json:"maxCostPerResponseNanos,omitempty,string"` // Nanos: Cost of survey in nano units of the given currency. DEPRECATED // in favor of cost_per_response_nanos Nanos int64 `json:"nanos,omitempty,string"` // ForceSendFields is a list of field names (e.g. // "CostPerResponseNanos") to unconditionally include in API requests. // By default, fields with empty values are omitted from API requests. // However, any non-pointer, non-interface field appearing in // ForceSendFields will be sent to the server regardless of whether the // field is empty or not. This may be used to include empty fields in // Patch requests. ForceSendFields []string `json:"-"` }
SurveyCost: Message defining the cost to run a given survey through API.
func (*SurveyCost) MarshalJSON ¶
func (s *SurveyCost) MarshalJSON() ([]byte, error)
type SurveyQuestion ¶
type SurveyQuestion struct { // AnswerOrder: The randomization option for multiple choice and // multi-select questions. If not specified, this option defaults to // randomize. AnswerOrder string `json:"answerOrder,omitempty"` // Answers: Required list of answer options for a question. Answers []string `json:"answers,omitempty"` // HasOther: Option to allow open-ended text box for Single Answer and // Multiple Answer question types. This can be used with SINGLE_ANSWER, // SINGLE_ANSWER_WITH_IMAGE, MULTIPLE_ANSWERS, and // MULTIPLE_ANSWERS_WITH_IMAGE question types. HasOther bool `json:"hasOther,omitempty"` // HighValueLabel: For rating questions, the text for the higher end of // the scale, such as 'Best'. For numeric questions, a string // representing a floating-point that is the maximum allowed number for // a response. HighValueLabel string `json:"highValueLabel,omitempty"` Images []*SurveyQuestionImage `json:"images,omitempty"` // LastAnswerPositionPinned: Currently only support pinning an answer // option to the last position. LastAnswerPositionPinned bool `json:"lastAnswerPositionPinned,omitempty"` // LowValueLabel: For rating questions, the text for the lower end of // the scale, such as 'Worst'. For numeric questions, a string // representing a floating-point that is the minimum allowed number for // a response. LowValueLabel string `json:"lowValueLabel,omitempty"` // MustPickSuggestion: Option to force the user to pick one of the open // text suggestions. This requires that suggestions are provided for // this question. MustPickSuggestion bool `json:"mustPickSuggestion,omitempty"` // NumStars: Number of stars to use for ratings questions. NumStars string `json:"numStars,omitempty"` // OpenTextPlaceholder: Placeholder text for an open text question. OpenTextPlaceholder string `json:"openTextPlaceholder,omitempty"` // OpenTextSuggestions: A list of suggested answers for open text // question auto-complete. This is only valid if single_line_response is // true. OpenTextSuggestions []string `json:"openTextSuggestions,omitempty"` // Question: Required question text shown to the respondent. Question string `json:"question,omitempty"` // SentimentText: Used by the Rating Scale with Text question type. This // text goes along with the question field that is presented to the // respondent, and is the actual text that the respondent is asked to // rate. SentimentText string `json:"sentimentText,omitempty"` // SingleLineResponse: Option to allow multiple line open text responses // instead of a single line response. Note that we don't show // auto-complete suggestions with multiple line responses. SingleLineResponse bool `json:"singleLineResponse,omitempty"` // ThresholdAnswers: The threshold/screener answer options, which will // screen a user into the rest of the survey. These will be a subset of // the answer option strings. ThresholdAnswers []string `json:"thresholdAnswers,omitempty"` // Type: Required field defining the question type. For details about // configuring different type of questions, consult the question // configuration guide. Type string `json:"type,omitempty"` // UnitOfMeasurementLabel: Optional unit of measurement for display (for // example: hours, people, miles). UnitOfMeasurementLabel string `json:"unitOfMeasurementLabel,omitempty"` // VideoId: The YouTube video ID to be show in video questions. VideoId string `json:"videoId,omitempty"` // ForceSendFields is a list of field names (e.g. "AnswerOrder") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
SurveyQuestion: Message defining the question specifications.
func (*SurveyQuestion) MarshalJSON ¶
func (s *SurveyQuestion) MarshalJSON() ([]byte, error)
type SurveyQuestionImage ¶
type SurveyQuestionImage struct { // AltText: The alt text property used in image tags is required for all // images. AltText string `json:"altText,omitempty"` // Data: Inline jpeg, gif, tiff, bmp, or png image raw bytes for an // image question types. Data string `json:"data,omitempty"` // Url: The read-only URL for the hosted images. Url string `json:"url,omitempty"` // ForceSendFields is a list of field names (e.g. "AltText") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
SurveyQuestionImage: Container object for image data and alt_text.
func (*SurveyQuestionImage) MarshalJSON ¶
func (s *SurveyQuestionImage) MarshalJSON() ([]byte, error)
type SurveyResults ¶
type SurveyResults struct { // Status: Human readable string describing the status of the request. Status string `json:"status,omitempty"` // SurveyUrlId: External survey ID as viewable by survey owners in the // editor view. SurveyUrlId string `json:"surveyUrlId,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Status") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
SurveyResults: Reference to the current results for a given survey.
func (*SurveyResults) MarshalJSON ¶
func (s *SurveyResults) MarshalJSON() ([]byte, error)
type SurveysDeleteCall ¶
type SurveysDeleteCall struct {
// contains filtered or unexported fields
}
func (*SurveysDeleteCall) Context ¶
func (c *SurveysDeleteCall) Context(ctx context.Context) *SurveysDeleteCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*SurveysDeleteCall) Do ¶
func (c *SurveysDeleteCall) Do(opts ...googleapi.CallOption) (*SurveysDeleteResponse, error)
Do executes the "consumersurveys.surveys.delete" call. Exactly one of *SurveysDeleteResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *SurveysDeleteResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*SurveysDeleteCall) Fields ¶
func (c *SurveysDeleteCall) Fields(s ...googleapi.Field) *SurveysDeleteCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type SurveysDeleteResponse ¶
type SurveysDeleteResponse struct { // RequestId: Unique request ID used for logging and debugging. Please // include in any error reporting or troubleshooting requests. RequestId string `json:"requestId,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "RequestId") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
func (*SurveysDeleteResponse) MarshalJSON ¶
func (s *SurveysDeleteResponse) MarshalJSON() ([]byte, error)
type SurveysGetCall ¶
type SurveysGetCall struct {
// contains filtered or unexported fields
}
func (*SurveysGetCall) Context ¶
func (c *SurveysGetCall) Context(ctx context.Context) *SurveysGetCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*SurveysGetCall) Do ¶
func (c *SurveysGetCall) Do(opts ...googleapi.CallOption) (*Survey, error)
Do executes the "consumersurveys.surveys.get" call. Exactly one of *Survey or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Survey.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*SurveysGetCall) Fields ¶
func (c *SurveysGetCall) Fields(s ...googleapi.Field) *SurveysGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*SurveysGetCall) IfNoneMatch ¶
func (c *SurveysGetCall) IfNoneMatch(entityTag string) *SurveysGetCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
type SurveysInsertCall ¶
type SurveysInsertCall struct {
// contains filtered or unexported fields
}
func (*SurveysInsertCall) Context ¶
func (c *SurveysInsertCall) Context(ctx context.Context) *SurveysInsertCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*SurveysInsertCall) Do ¶
func (c *SurveysInsertCall) Do(opts ...googleapi.CallOption) (*Survey, error)
Do executes the "consumersurveys.surveys.insert" call. Exactly one of *Survey or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Survey.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*SurveysInsertCall) Fields ¶
func (c *SurveysInsertCall) Fields(s ...googleapi.Field) *SurveysInsertCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type SurveysListCall ¶
type SurveysListCall struct {
// contains filtered or unexported fields
}
func (*SurveysListCall) Context ¶
func (c *SurveysListCall) Context(ctx context.Context) *SurveysListCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*SurveysListCall) Do ¶
func (c *SurveysListCall) Do(opts ...googleapi.CallOption) (*SurveysListResponse, error)
Do executes the "consumersurveys.surveys.list" call. Exactly one of *SurveysListResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *SurveysListResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*SurveysListCall) Fields ¶
func (c *SurveysListCall) Fields(s ...googleapi.Field) *SurveysListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*SurveysListCall) IfNoneMatch ¶
func (c *SurveysListCall) IfNoneMatch(entityTag string) *SurveysListCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
func (*SurveysListCall) MaxResults ¶
func (c *SurveysListCall) MaxResults(maxResults int64) *SurveysListCall
MaxResults sets the optional parameter "maxResults":
func (*SurveysListCall) StartIndex ¶
func (c *SurveysListCall) StartIndex(startIndex int64) *SurveysListCall
StartIndex sets the optional parameter "startIndex":
func (*SurveysListCall) Token ¶
func (c *SurveysListCall) Token(token string) *SurveysListCall
Token sets the optional parameter "token":
type SurveysListResponse ¶
type SurveysListResponse struct { PageInfo *PageInfo `json:"pageInfo,omitempty"` // RequestId: Unique request ID used for logging and debugging. Please // include in any error reporting or troubleshooting requests. RequestId string `json:"requestId,omitempty"` // Resources: An individual survey resource. Resources []*Survey `json:"resources,omitempty"` TokenPagination *TokenPagination `json:"tokenPagination,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "PageInfo") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
func (*SurveysListResponse) MarshalJSON ¶
func (s *SurveysListResponse) MarshalJSON() ([]byte, error)
type SurveysService ¶
type SurveysService struct {
// contains filtered or unexported fields
}
func NewSurveysService ¶
func NewSurveysService(s *Service) *SurveysService
func (*SurveysService) Delete ¶
func (r *SurveysService) Delete(surveyUrlId string) *SurveysDeleteCall
Delete: Removes a survey from view in all user GET requests.
func (*SurveysService) Get ¶
func (r *SurveysService) Get(surveyUrlId string) *SurveysGetCall
Get: Retrieves information about the specified survey.
func (*SurveysService) Insert ¶
func (r *SurveysService) Insert(survey *Survey) *SurveysInsertCall
Insert: Creates a survey.
func (*SurveysService) List ¶
func (r *SurveysService) List() *SurveysListCall
List: Lists the surveys owned by the authenticated user.
func (*SurveysService) Start ¶
func (r *SurveysService) Start(resourceId string, surveysstartrequest *SurveysStartRequest) *SurveysStartCall
Start: Begins running a survey.
func (*SurveysService) Stop ¶
func (r *SurveysService) Stop(resourceId string) *SurveysStopCall
Stop: Stops a running survey.
func (*SurveysService) Update ¶
func (r *SurveysService) Update(surveyUrlId string, survey *Survey) *SurveysUpdateCall
Update: Updates a survey. Currently the only property that can be updated is the owners property.
type SurveysStartCall ¶
type SurveysStartCall struct {
// contains filtered or unexported fields
}
func (*SurveysStartCall) Context ¶
func (c *SurveysStartCall) Context(ctx context.Context) *SurveysStartCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*SurveysStartCall) Do ¶
func (c *SurveysStartCall) Do(opts ...googleapi.CallOption) (*SurveysStartResponse, error)
Do executes the "consumersurveys.surveys.start" call. Exactly one of *SurveysStartResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *SurveysStartResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*SurveysStartCall) Fields ¶
func (c *SurveysStartCall) Fields(s ...googleapi.Field) *SurveysStartCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type SurveysStartRequest ¶
type SurveysStartRequest struct { // MaxCostPerResponseNanos: Threshold to start a survey automically if // the quoted prices is less than or equal to this value. See // Survey.Cost for more details. MaxCostPerResponseNanos int64 `json:"maxCostPerResponseNanos,omitempty,string"` // ForceSendFields is a list of field names (e.g. // "MaxCostPerResponseNanos") to unconditionally include in API // requests. By default, fields with empty values are omitted from API // requests. However, any non-pointer, non-interface field appearing in // ForceSendFields will be sent to the server regardless of whether the // field is empty or not. This may be used to include empty fields in // Patch requests. ForceSendFields []string `json:"-"` }
func (*SurveysStartRequest) MarshalJSON ¶
func (s *SurveysStartRequest) MarshalJSON() ([]byte, error)
type SurveysStartResponse ¶
type SurveysStartResponse struct { // RequestId: Unique request ID used for logging and debugging. Please // include in any error reporting or troubleshooting requests. RequestId string `json:"requestId,omitempty"` // Resource: Survey object containing the specification of the started // Survey. Resource *Survey `json:"resource,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "RequestId") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
func (*SurveysStartResponse) MarshalJSON ¶
func (s *SurveysStartResponse) MarshalJSON() ([]byte, error)
type SurveysStopCall ¶
type SurveysStopCall struct {
// contains filtered or unexported fields
}
func (*SurveysStopCall) Context ¶
func (c *SurveysStopCall) Context(ctx context.Context) *SurveysStopCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*SurveysStopCall) Do ¶
func (c *SurveysStopCall) Do(opts ...googleapi.CallOption) (*SurveysStopResponse, error)
Do executes the "consumersurveys.surveys.stop" call. Exactly one of *SurveysStopResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *SurveysStopResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*SurveysStopCall) Fields ¶
func (c *SurveysStopCall) Fields(s ...googleapi.Field) *SurveysStopCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type SurveysStopResponse ¶
type SurveysStopResponse struct { // RequestId: Unique request ID used for logging and debugging. Please // include in any error reporting or troubleshooting requests. RequestId string `json:"requestId,omitempty"` // Resource: Survey object containing the specification of the stopped // Survey. Resource *Survey `json:"resource,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "RequestId") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
func (*SurveysStopResponse) MarshalJSON ¶
func (s *SurveysStopResponse) MarshalJSON() ([]byte, error)
type SurveysUpdateCall ¶
type SurveysUpdateCall struct {
// contains filtered or unexported fields
}
func (*SurveysUpdateCall) Context ¶
func (c *SurveysUpdateCall) Context(ctx context.Context) *SurveysUpdateCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*SurveysUpdateCall) Do ¶
func (c *SurveysUpdateCall) Do(opts ...googleapi.CallOption) (*Survey, error)
Do executes the "consumersurveys.surveys.update" call. Exactly one of *Survey or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Survey.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*SurveysUpdateCall) Fields ¶
func (c *SurveysUpdateCall) Fields(s ...googleapi.Field) *SurveysUpdateCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type TokenPagination ¶
type TokenPagination struct { NextPageToken string `json:"nextPageToken,omitempty"` PreviousPageToken string `json:"previousPageToken,omitempty"` // ForceSendFields is a list of field names (e.g. "NextPageToken") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
func (*TokenPagination) MarshalJSON ¶
func (s *TokenPagination) MarshalJSON() ([]byte, error)