{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
module Network.Google.Surveys.Types
(
surveysService
, surveysScope
, userInfoEmailScope
, surveysReadOnlyScope
, SurveysListResponse
, surveysListResponse
, slrRequestId
, slrTokenPagination
, slrPageInfo
, slrResources
, TokenPagination
, tokenPagination
, tpNextPageToken
, tpPreviousPageToken
, ResultsGetRequest
, resultsGetRequest
, rgrResultMask
, PageInfo
, pageInfo
, piResultPerPage
, piTotalResults
, piStartIndex
, FieldMask
, fieldMask
, fmId
, fmFields
, Survey
, survey
, sAudience
, sState
, sOwners
, sWantedResponseCount
, sSurveyURLId
, sCost
, sRejectionReason
, sCustomerData
, sQuestions
, sTitle
, sDescription
, SurveysStartResponse
, surveysStartResponse
, ssrRequestId
, SurveysStopResponse
, surveysStopResponse
, sRequestId
, ResultsMask
, resultsMask
, rmProjection
, rmFields
, SurveyRejection
, surveyRejection
, srExplanation
, srType
, SurveyResults
, surveyResults
, srStatus
, srSurveyURLId
, SurveysStartRequest
, surveysStartRequest
, ssrMaxCostPerResponseNanos
, SurveysDeleteResponse
, surveysDeleteResponse
, sdrRequestId
, SurveyQuestionImage
, surveyQuestionImage
, sqiData
, sqiURL
, sqiAltText
, SurveyAudience
, surveyAudience
, saCountry
, saAges
, saLanguages
, saGender
, saCountrySubdivision
, saPopulationSource
, SurveyCost
, surveyCost
, scCurrencyCode
, scNanos
, scMaxCostPerResponseNanos
, scCostPerResponseNanos
, SurveyQuestion
, surveyQuestion
, sqImages
, sqAnswers
, sqSingleLineResponse
, sqMustPickSuggestion
, sqSentimentText
, sqThresholdAnswers
, sqHasOther
, sqOpenTextSuggestions
, sqVideoId
, sqLastAnswerPositionPinned
, sqAnswerOrder
, sqOpenTextPlaceholder
, sqType
, sqUnitOfMeasurementLabel
, sqHighValueLabel
, sqQuestion
, sqNumStars
, sqLowValueLabel
) where
import Network.Google.Prelude
import Network.Google.Surveys.Types.Product
import Network.Google.Surveys.Types.Sum
surveysService :: ServiceConfig
surveysService
= defaultService (ServiceId "surveys:v2")
"www.googleapis.com"
surveysScope :: Proxy '["https://www.googleapis.com/auth/surveys"]
surveysScope = Proxy;
userInfoEmailScope :: Proxy '["https://www.googleapis.com/auth/userinfo.email"]
userInfoEmailScope = Proxy;
surveysReadOnlyScope :: Proxy '["https://www.googleapis.com/auth/surveys.readonly"]
surveysReadOnlyScope = Proxy;