gogol-proximitybeacon-0.3.0: Google Proximity Beacon SDK.

Copyright(c) 2015-2016 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.Google.ProximityBeacon.Types

Contents

Description

 

Synopsis

Service Configuration

proximityBeaconService :: ServiceConfig #

Default request referring to version v1beta1 of the Google Proximity Beacon API. This contains the host and root path used as a starting point for constructing service requests.

OAuth Scopes

userlocationBeaconRegistryScope :: Proxy '["https://www.googleapis.com/auth/userlocation.beacon.registry"] #

View and modify your beacons

LatLng

data LatLng #

An object representing a latitude/longitude pair. This is expressed as a pair of doubles representing degrees latitude and degrees longitude. Unless specified otherwise, this must conform to the WGS84 standard. Values must be within normalized ranges. Example of normalization code in Python: def NormalizeLongitude(longitude): """Wraps decimal degrees longitude to [-180.0, 180.0].""" q, r = divmod(longitude, 360.0) if r > 180.0 or (r == 180.0 and q <= -1.0): return r - 360.0 return r def NormalizeLatLng(latitude, longitude): """Wraps decimal degrees latitude and longitude to [-90.0, 90.0] and [-180.0, 180.0], respectively.""" r = latitude % 360.0 if r = 270.0: return r - 360, NormalizeLongitude(longitude) else: return 180 - r, NormalizeLongitude(longitude + 180.0) assert 180.0 == NormalizeLongitude(180.0) assert -180.0 == NormalizeLongitude(-180.0) assert -179.0 == NormalizeLongitude(181.0) assert (0.0, 0.0) == NormalizeLatLng(360.0, 0.0) assert (0.0, 0.0) == NormalizeLatLng(-360.0, 0.0) assert (85.0, 180.0) == NormalizeLatLng(95.0, 0.0) assert (-85.0, -170.0) == NormalizeLatLng(-95.0, 10.0) assert (90.0, 10.0) == NormalizeLatLng(90.0, 10.0) assert (-90.0, -10.0) == NormalizeLatLng(-90.0, -10.0) assert (0.0, -170.0) == NormalizeLatLng(-180.0, 10.0) assert (0.0, -170.0) == NormalizeLatLng(180.0, 10.0) assert (-90.0, 10.0) == NormalizeLatLng(270.0, 10.0) assert (90.0, 10.0) == NormalizeLatLng(-270.0, 10.0)

See: latLng smart constructor.

Instances

Eq LatLng # 

Methods

(==) :: LatLng -> LatLng -> Bool #

(/=) :: LatLng -> LatLng -> Bool #

Data LatLng # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> LatLng -> c LatLng #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c LatLng #

toConstr :: LatLng -> Constr #

dataTypeOf :: LatLng -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c LatLng) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c LatLng) #

gmapT :: (forall b. Data b => b -> b) -> LatLng -> LatLng #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> LatLng -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> LatLng -> r #

gmapQ :: (forall d. Data d => d -> u) -> LatLng -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> LatLng -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> LatLng -> m LatLng #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> LatLng -> m LatLng #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> LatLng -> m LatLng #

Show LatLng # 
Generic LatLng # 

Associated Types

type Rep LatLng :: * -> * #

Methods

from :: LatLng -> Rep LatLng x #

to :: Rep LatLng x -> LatLng #

ToJSON LatLng # 
FromJSON LatLng # 
type Rep LatLng # 
type Rep LatLng = D1 (MetaData "LatLng" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" False) (C1 (MetaCons "LatLng'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_llLatitude") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Double)))) (S1 (MetaSel (Just Symbol "_llLongitude") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Double))))))

latLng :: LatLng #

Creates a value of LatLng with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

llLatitude :: Lens' LatLng (Maybe Double) #

The latitude in degrees. It must be in the range [-90.0, +90.0].

llLongitude :: Lens' LatLng (Maybe Double) #

The longitude in degrees. It must be in the range [-180.0, +180.0].

AttachmentInfo

data AttachmentInfo #

A subset of attachment information served via the `beaconinfo.getforobserved` method, used when your users encounter your beacons.

See: attachmentInfo smart constructor.

Instances

Eq AttachmentInfo # 
Data AttachmentInfo # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> AttachmentInfo -> c AttachmentInfo #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c AttachmentInfo #

toConstr :: AttachmentInfo -> Constr #

dataTypeOf :: AttachmentInfo -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c AttachmentInfo) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c AttachmentInfo) #

gmapT :: (forall b. Data b => b -> b) -> AttachmentInfo -> AttachmentInfo #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> AttachmentInfo -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> AttachmentInfo -> r #

gmapQ :: (forall d. Data d => d -> u) -> AttachmentInfo -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> AttachmentInfo -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> AttachmentInfo -> m AttachmentInfo #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> AttachmentInfo -> m AttachmentInfo #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> AttachmentInfo -> m AttachmentInfo #

Show AttachmentInfo # 
Generic AttachmentInfo # 

Associated Types

type Rep AttachmentInfo :: * -> * #

ToJSON AttachmentInfo # 
FromJSON AttachmentInfo # 
type Rep AttachmentInfo # 
type Rep AttachmentInfo = D1 (MetaData "AttachmentInfo" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" False) (C1 (MetaCons "AttachmentInfo'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_aiData") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bytes))) (S1 (MetaSel (Just Symbol "_aiNamespacedType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

attachmentInfo :: AttachmentInfo #

Creates a value of AttachmentInfo with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

aiData :: Lens' AttachmentInfo (Maybe ByteString) #

An opaque data container for client-provided data.

aiNamespacedType :: Lens' AttachmentInfo (Maybe Text) #

Specifies what kind of attachment this is. Tells a client how to interpret the `data` field. Format is namespace/type, for example scrupulous-wombat-12345/welcome-message

BeaconProperties

data BeaconProperties #

Properties of the beacon device, for example battery type or firmware version. Optional.

See: beaconProperties smart constructor.

Instances

Eq BeaconProperties # 
Data BeaconProperties # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> BeaconProperties -> c BeaconProperties #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c BeaconProperties #

toConstr :: BeaconProperties -> Constr #

dataTypeOf :: BeaconProperties -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c BeaconProperties) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c BeaconProperties) #

gmapT :: (forall b. Data b => b -> b) -> BeaconProperties -> BeaconProperties #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> BeaconProperties -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> BeaconProperties -> r #

gmapQ :: (forall d. Data d => d -> u) -> BeaconProperties -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> BeaconProperties -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> BeaconProperties -> m BeaconProperties #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> BeaconProperties -> m BeaconProperties #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> BeaconProperties -> m BeaconProperties #

Show BeaconProperties # 
Generic BeaconProperties # 
ToJSON BeaconProperties # 
FromJSON BeaconProperties # 
type Rep BeaconProperties # 
type Rep BeaconProperties = D1 (MetaData "BeaconProperties" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" True) (C1 (MetaCons "BeaconProperties'" PrefixI True) (S1 (MetaSel (Just Symbol "_bpAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

beaconProperties #

Creates a value of BeaconProperties with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

Empty

data Empty #

A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.

See: empty smart constructor.

Instances

Eq Empty # 

Methods

(==) :: Empty -> Empty -> Bool #

(/=) :: Empty -> Empty -> Bool #

Data Empty # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Empty -> c Empty #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Empty #

toConstr :: Empty -> Constr #

dataTypeOf :: Empty -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Empty) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Empty) #

gmapT :: (forall b. Data b => b -> b) -> Empty -> Empty #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Empty -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Empty -> r #

gmapQ :: (forall d. Data d => d -> u) -> Empty -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Empty -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Empty -> m Empty #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Empty -> m Empty #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Empty -> m Empty #

Show Empty # 

Methods

showsPrec :: Int -> Empty -> ShowS #

show :: Empty -> String #

showList :: [Empty] -> ShowS #

Generic Empty # 

Associated Types

type Rep Empty :: * -> * #

Methods

from :: Empty -> Rep Empty x #

to :: Rep Empty x -> Empty #

ToJSON Empty # 
FromJSON Empty # 
type Rep Empty # 
type Rep Empty = D1 (MetaData "Empty" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" False) (C1 (MetaCons "Empty'" PrefixI False) U1)

empty :: Empty #

Creates a value of Empty with the minimum fields required to make a request.

DeleteAttachmentsResponse

data DeleteAttachmentsResponse #

Response for a request to delete attachments.

See: deleteAttachmentsResponse smart constructor.

Instances

Eq DeleteAttachmentsResponse # 
Data DeleteAttachmentsResponse # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> DeleteAttachmentsResponse -> c DeleteAttachmentsResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c DeleteAttachmentsResponse #

toConstr :: DeleteAttachmentsResponse -> Constr #

dataTypeOf :: DeleteAttachmentsResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c DeleteAttachmentsResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c DeleteAttachmentsResponse) #

gmapT :: (forall b. Data b => b -> b) -> DeleteAttachmentsResponse -> DeleteAttachmentsResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> DeleteAttachmentsResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> DeleteAttachmentsResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> DeleteAttachmentsResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> DeleteAttachmentsResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> DeleteAttachmentsResponse -> m DeleteAttachmentsResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> DeleteAttachmentsResponse -> m DeleteAttachmentsResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> DeleteAttachmentsResponse -> m DeleteAttachmentsResponse #

Show DeleteAttachmentsResponse # 
Generic DeleteAttachmentsResponse # 
ToJSON DeleteAttachmentsResponse # 
FromJSON DeleteAttachmentsResponse # 
type Rep DeleteAttachmentsResponse # 
type Rep DeleteAttachmentsResponse = D1 (MetaData "DeleteAttachmentsResponse" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" True) (C1 (MetaCons "DeleteAttachmentsResponse'" PrefixI True) (S1 (MetaSel (Just Symbol "_darNumDeleted") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe (Textual Int32)))))

deleteAttachmentsResponse :: DeleteAttachmentsResponse #

Creates a value of DeleteAttachmentsResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

darNumDeleted :: Lens' DeleteAttachmentsResponse (Maybe Int32) #

The number of attachments that were deleted.

GetInfoForObservedBeaconsRequest

data GetInfoForObservedBeaconsRequest #

Request for beacon and attachment information about beacons that a mobile client has encountered "in the wild".

See: getInfoForObservedBeaconsRequest smart constructor.

Instances

Eq GetInfoForObservedBeaconsRequest # 
Data GetInfoForObservedBeaconsRequest # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> GetInfoForObservedBeaconsRequest -> c GetInfoForObservedBeaconsRequest #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c GetInfoForObservedBeaconsRequest #

toConstr :: GetInfoForObservedBeaconsRequest -> Constr #

dataTypeOf :: GetInfoForObservedBeaconsRequest -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c GetInfoForObservedBeaconsRequest) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c GetInfoForObservedBeaconsRequest) #

gmapT :: (forall b. Data b => b -> b) -> GetInfoForObservedBeaconsRequest -> GetInfoForObservedBeaconsRequest #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> GetInfoForObservedBeaconsRequest -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> GetInfoForObservedBeaconsRequest -> r #

gmapQ :: (forall d. Data d => d -> u) -> GetInfoForObservedBeaconsRequest -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> GetInfoForObservedBeaconsRequest -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> GetInfoForObservedBeaconsRequest -> m GetInfoForObservedBeaconsRequest #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> GetInfoForObservedBeaconsRequest -> m GetInfoForObservedBeaconsRequest #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> GetInfoForObservedBeaconsRequest -> m GetInfoForObservedBeaconsRequest #

Show GetInfoForObservedBeaconsRequest # 
Generic GetInfoForObservedBeaconsRequest # 
ToJSON GetInfoForObservedBeaconsRequest # 
FromJSON GetInfoForObservedBeaconsRequest # 
type Rep GetInfoForObservedBeaconsRequest # 
type Rep GetInfoForObservedBeaconsRequest = D1 (MetaData "GetInfoForObservedBeaconsRequest" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" False) (C1 (MetaCons "GetInfoForObservedBeaconsRequest'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_gifobrObservations") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Observation]))) (S1 (MetaSel (Just Symbol "_gifobrNamespacedTypes") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text])))))

getInfoForObservedBeaconsRequest :: GetInfoForObservedBeaconsRequest #

Creates a value of GetInfoForObservedBeaconsRequest with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

gifobrObservations :: Lens' GetInfoForObservedBeaconsRequest [Observation] #

The beacons that the client has encountered. At least one must be given.

gifobrNamespacedTypes :: Lens' GetInfoForObservedBeaconsRequest [Text] #

Specifies what kind of attachments to include in the response. When given, the response will include only attachments of the given types. When empty, no attachments will be returned. Must be in the format namespace/type. Accepts `*` to specify all types in all namespaces. Optional.

Namespace

data Namespace #

An attachment namespace defines read and write access for all the attachments created under it. Each namespace is globally unique, and owned by one project which is the only project that can create attachments under it.

See: namespace smart constructor.

Instances

Eq Namespace # 
Data Namespace # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Namespace -> c Namespace #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Namespace #

toConstr :: Namespace -> Constr #

dataTypeOf :: Namespace -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Namespace) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Namespace) #

gmapT :: (forall b. Data b => b -> b) -> Namespace -> Namespace #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Namespace -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Namespace -> r #

gmapQ :: (forall d. Data d => d -> u) -> Namespace -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Namespace -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Namespace -> m Namespace #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Namespace -> m Namespace #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Namespace -> m Namespace #

Show Namespace # 
Generic Namespace # 

Associated Types

type Rep Namespace :: * -> * #

ToJSON Namespace # 
FromJSON Namespace # 
type Rep Namespace # 
type Rep Namespace = D1 (MetaData "Namespace" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" False) (C1 (MetaCons "Namespace'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_nServingVisibility") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_nNamespaceName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

namespace :: Namespace #

Creates a value of Namespace with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

nServingVisibility :: Lens' Namespace (Maybe Text) #

Specifies what clients may receive attachments under this namespace via `beaconinfo.getforobserved`.

nNamespaceName :: Lens' Namespace (Maybe Text) #

Resource name of this namespace. Namespaces names have the format: namespaces/namespace.

EphemeralIdRegistration

data EphemeralIdRegistration #

Write-only registration parameters for beacons using Eddystone-EID format. Two ways of securely registering an Eddystone-EID beacon with the service are supported: 1. Perform an ECDH key exchange via this API, including a previous call to `GET /v1beta1/eidparams`. In this case the fields `beacon_ecdh_public_key` and `service_ecdh_public_key` should be populated and `beacon_identity_key` should not be populated. This method ensures that only the two parties in the ECDH key exchange can compute the identity key, which becomes a secret between them. 2. Derive or obtain the beacon's identity key via other secure means (perhaps an ECDH key exchange between the beacon and a mobile device or any other secure method), and then submit the resulting identity key to the service. In this case `beacon_identity_key` field should be populated, and neither of `beacon_ecdh_public_key` nor `service_ecdh_public_key` fields should be. The security of this method depends on how securely the parties involved (in particular the bluetooth client) handle the identity key, and obviously on how securely the identity key was generated. See the Eddystone specification at GitHub.

See: ephemeralIdRegistration smart constructor.

Instances

Eq EphemeralIdRegistration # 
Data EphemeralIdRegistration # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> EphemeralIdRegistration -> c EphemeralIdRegistration #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c EphemeralIdRegistration #

toConstr :: EphemeralIdRegistration -> Constr #

dataTypeOf :: EphemeralIdRegistration -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c EphemeralIdRegistration) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c EphemeralIdRegistration) #

gmapT :: (forall b. Data b => b -> b) -> EphemeralIdRegistration -> EphemeralIdRegistration #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> EphemeralIdRegistration -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> EphemeralIdRegistration -> r #

gmapQ :: (forall d. Data d => d -> u) -> EphemeralIdRegistration -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> EphemeralIdRegistration -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> EphemeralIdRegistration -> m EphemeralIdRegistration #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> EphemeralIdRegistration -> m EphemeralIdRegistration #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> EphemeralIdRegistration -> m EphemeralIdRegistration #

Show EphemeralIdRegistration # 
Generic EphemeralIdRegistration # 
ToJSON EphemeralIdRegistration # 
FromJSON EphemeralIdRegistration # 
type Rep EphemeralIdRegistration # 
type Rep EphemeralIdRegistration = D1 (MetaData "EphemeralIdRegistration" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" False) (C1 (MetaCons "EphemeralIdRegistration'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_eirRotationPeriodExponent") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Word32)))) ((:*:) (S1 (MetaSel (Just Symbol "_eirInitialClockValue") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Word64)))) (S1 (MetaSel (Just Symbol "_eirBeaconIdentityKey") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bytes))))) ((:*:) (S1 (MetaSel (Just Symbol "_eirBeaconEcdhPublicKey") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bytes))) ((:*:) (S1 (MetaSel (Just Symbol "_eirInitialEid") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bytes))) (S1 (MetaSel (Just Symbol "_eirServiceEcdhPublicKey") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bytes)))))))

ephemeralIdRegistration :: EphemeralIdRegistration #

Creates a value of EphemeralIdRegistration with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

eirRotationPeriodExponent :: Lens' EphemeralIdRegistration (Maybe Word32) #

Indicates the nominal period between each rotation of the beacon's ephemeral ID. "Nominal" because the beacon should randomize the actual interval. See the spec at github for details. This value corresponds to a power-of-two scaler on the beacon's clock: when the scaler value is K, the beacon will begin broadcasting a new ephemeral ID on average every 2^K seconds.

eirInitialClockValue :: Lens' EphemeralIdRegistration (Maybe Word64) #

The initial clock value of the beacon. The beacon's clock must have begun counting at this value immediately prior to transmitting this value to the resolving service. Significant delay in transmitting this value to the service risks registration or resolution failures. If a value is not provided, the default is zero.

eirBeaconIdentityKey :: Lens' EphemeralIdRegistration (Maybe ByteString) #

The private key of the beacon. If this field is populated, `beacon_ecdh_public_key` and `service_ecdh_public_key` must not be populated.

eirBeaconEcdhPublicKey :: Lens' EphemeralIdRegistration (Maybe ByteString) #

The beacon's public key used for the Elliptic curve Diffie-Hellman key exchange. When this field is populated, `service_ecdh_public_key` must also be populated, and `beacon_identity_key` must not be.

eirInitialEid :: Lens' EphemeralIdRegistration (Maybe ByteString) #

An initial ephemeral ID calculated using the clock value submitted as `initial_clock_value`, and the secret key generated by the Diffie-Hellman key exchange using `service_ecdh_public_key` and `service_ecdh_public_key`. This initial EID value will be used by the service to confirm that the key exchange process was successful.

eirServiceEcdhPublicKey :: Lens' EphemeralIdRegistration (Maybe ByteString) #

The service's public key used for the Elliptic curve Diffie-Hellman key exchange. When this field is populated, `beacon_ecdh_public_key` must also be populated, and `beacon_identity_key` must not be.

ListNamespacesResponse

data ListNamespacesResponse #

Response to ListNamespacesRequest that contains all the project's namespaces.

See: listNamespacesResponse smart constructor.

Instances

Eq ListNamespacesResponse # 
Data ListNamespacesResponse # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ListNamespacesResponse -> c ListNamespacesResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ListNamespacesResponse #

toConstr :: ListNamespacesResponse -> Constr #

dataTypeOf :: ListNamespacesResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ListNamespacesResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ListNamespacesResponse) #

gmapT :: (forall b. Data b => b -> b) -> ListNamespacesResponse -> ListNamespacesResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ListNamespacesResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ListNamespacesResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> ListNamespacesResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ListNamespacesResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ListNamespacesResponse -> m ListNamespacesResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ListNamespacesResponse -> m ListNamespacesResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ListNamespacesResponse -> m ListNamespacesResponse #

Show ListNamespacesResponse # 
Generic ListNamespacesResponse # 
ToJSON ListNamespacesResponse # 
FromJSON ListNamespacesResponse # 
type Rep ListNamespacesResponse # 
type Rep ListNamespacesResponse = D1 (MetaData "ListNamespacesResponse" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" True) (C1 (MetaCons "ListNamespacesResponse'" PrefixI True) (S1 (MetaSel (Just Symbol "_lnrNamespaces") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe [Namespace]))))

listNamespacesResponse :: ListNamespacesResponse #

Creates a value of ListNamespacesResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

lnrNamespaces :: Lens' ListNamespacesResponse [Namespace] #

The attachments that corresponded to the request params.

Date

data Date #

Represents a whole calendar date, e.g. date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the Proleptic Gregorian Calendar. The day may be 0 to represent a year and month where the day is not significant, e.g. credit card expiration date. The year may be 0 to represent a month and day independent of year, e.g. anniversary date. Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.

See: date smart constructor.

Instances

Eq Date # 

Methods

(==) :: Date -> Date -> Bool #

(/=) :: Date -> Date -> Bool #

Data Date # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Date -> c Date #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Date #

toConstr :: Date -> Constr #

dataTypeOf :: Date -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Date) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Date) #

gmapT :: (forall b. Data b => b -> b) -> Date -> Date #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Date -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Date -> r #

gmapQ :: (forall d. Data d => d -> u) -> Date -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Date -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Date -> m Date #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Date -> m Date #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Date -> m Date #

Show Date # 

Methods

showsPrec :: Int -> Date -> ShowS #

show :: Date -> String #

showList :: [Date] -> ShowS #

Generic Date # 

Associated Types

type Rep Date :: * -> * #

Methods

from :: Date -> Rep Date x #

to :: Rep Date x -> Date #

ToJSON Date # 
FromJSON Date # 
type Rep Date # 
type Rep Date = D1 (MetaData "Date" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" False) (C1 (MetaCons "Date'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_dDay") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32)))) ((:*:) (S1 (MetaSel (Just Symbol "_dYear") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32)))) (S1 (MetaSel (Just Symbol "_dMonth") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32)))))))

date :: Date #

Creates a value of Date with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

dDay :: Lens' Date (Maybe Int32) #

Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a year/month where the day is not significant.

dYear :: Lens' Date (Maybe Int32) #

Year of date. Must be from 1 to 9999, or 0 if specifying a date without a year.

dMonth :: Lens' Date (Maybe Int32) #

Month of year. Must be from 1 to 12.

Beacon

data Beacon #

Details of a beacon device.

See: beacon smart constructor.

Instances

Eq Beacon # 

Methods

(==) :: Beacon -> Beacon -> Bool #

(/=) :: Beacon -> Beacon -> Bool #

Data Beacon # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Beacon -> c Beacon #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Beacon #

toConstr :: Beacon -> Constr #

dataTypeOf :: Beacon -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Beacon) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Beacon) #

gmapT :: (forall b. Data b => b -> b) -> Beacon -> Beacon #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Beacon -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Beacon -> r #

gmapQ :: (forall d. Data d => d -> u) -> Beacon -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Beacon -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Beacon -> m Beacon #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Beacon -> m Beacon #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Beacon -> m Beacon #

Show Beacon # 
Generic Beacon # 

Associated Types

type Rep Beacon :: * -> * #

Methods

from :: Beacon -> Rep Beacon x #

to :: Rep Beacon x -> Beacon #

ToJSON Beacon # 
FromJSON Beacon # 
type Rep Beacon # 
type Rep Beacon = D1 (MetaData "Beacon" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" False) (C1 (MetaCons "Beacon'" PrefixI True) ((:*:) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_bLatLng") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe LatLng))) (S1 (MetaSel (Just Symbol "_bStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_bBeaconName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_bEphemeralIdRegistration") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe EphemeralIdRegistration))) (S1 (MetaSel (Just Symbol "_bIndoorLevel") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe IndoorLevel)))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_bExpectedStability") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_bProvisioningKey") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bytes))) (S1 (MetaSel (Just Symbol "_bDescription") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))) ((:*:) (S1 (MetaSel (Just Symbol "_bPlaceId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_bAdvertisedId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe AdvertisedId))) (S1 (MetaSel (Just Symbol "_bProperties") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe BeaconProperties))))))))

beacon :: Beacon #

Creates a value of Beacon with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

bLatLng :: Lens' Beacon (Maybe LatLng) #

The location of the beacon, expressed as a latitude and longitude pair. This location is given when the beacon is registered or updated. It does not necessarily indicate the actual current location of the beacon. Optional.

bStatus :: Lens' Beacon (Maybe Text) #

Current status of the beacon. Required.

bBeaconName :: Lens' Beacon (Maybe Text) #

Resource name of this beacon. A beacon name has the format "beacons/N!beaconId" where the beaconId is the base16 ID broadcast by the beacon and N is a code for the beacon's type. Possible values are `3` for Eddystone, `1` for iBeacon, or `5` for AltBeacon. This field must be left empty when registering. After reading a beacon, clients can use the name for future operations.

bEphemeralIdRegistration :: Lens' Beacon (Maybe EphemeralIdRegistration) #

Write-only registration parameters for beacons using Eddystone-EID (remotely resolved ephemeral ID) format. This information will not be populated in API responses. When submitting this data, the `advertised_id` field must contain an ID of type Eddystone-UID. Any other ID type will result in an error.

bIndoorLevel :: Lens' Beacon (Maybe IndoorLevel) #

The indoor level information for this beacon, if known. As returned by the Google Maps API. Optional.

bExpectedStability :: Lens' Beacon (Maybe Text) #

Expected location stability. This is set when the beacon is registered or updated, not automatically detected in any way. Optional.

bProvisioningKey :: Lens' Beacon (Maybe ByteString) #

Some beacons may require a user to provide an authorization key before changing any of its configuration (e.g. broadcast frames, transmit power). This field provides a place to store and control access to that key. This field is populated in responses to `GET /v1beta1/beacons/3!beaconId` from users with write access to the given beacon. That is to say: If the user is authorized to write the beacon's confidential data in the service, the service considers them authorized to configure the beacon. Note that this key grants nothing on the service, only on the beacon itself.

bDescription :: Lens' Beacon (Maybe Text) #

Free text used to identify and describe the beacon. Maximum length 140 characters. Optional.

bPlaceId :: Lens' Beacon (Maybe Text) #

The Google Places API Place ID of the place where the beacon is deployed. This is given when the beacon is registered or updated, not automatically detected in any way. Optional.

bAdvertisedId :: Lens' Beacon (Maybe AdvertisedId) #

The identifier of a beacon as advertised by it. This field must be populated when registering. It may be empty when updating a beacon record because it is ignored in updates. When registering a beacon that broadcasts Eddystone-EID, this field should contain a "stable" Eddystone-UID that identifies the beacon and links it to its attachments. The stable Eddystone-UID is only used for administering the beacon.

bProperties :: Lens' Beacon (Maybe BeaconProperties) #

Properties of the beacon device, for example battery type or firmware version. Optional.

Diagnostics

data Diagnostics #

Diagnostics for a single beacon.

See: diagnostics smart constructor.

Instances

Eq Diagnostics # 
Data Diagnostics # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Diagnostics -> c Diagnostics #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Diagnostics #

toConstr :: Diagnostics -> Constr #

dataTypeOf :: Diagnostics -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Diagnostics) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Diagnostics) #

gmapT :: (forall b. Data b => b -> b) -> Diagnostics -> Diagnostics #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Diagnostics -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Diagnostics -> r #

gmapQ :: (forall d. Data d => d -> u) -> Diagnostics -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Diagnostics -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Diagnostics -> m Diagnostics #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Diagnostics -> m Diagnostics #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Diagnostics -> m Diagnostics #

Show Diagnostics # 
Generic Diagnostics # 

Associated Types

type Rep Diagnostics :: * -> * #

ToJSON Diagnostics # 
FromJSON Diagnostics # 
type Rep Diagnostics # 
type Rep Diagnostics = D1 (MetaData "Diagnostics" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" False) (C1 (MetaCons "Diagnostics'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_dAlerts") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text]))) ((:*:) (S1 (MetaSel (Just Symbol "_dBeaconName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_dEstimatedLowBatteryDate") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Date))))))

diagnostics :: Diagnostics #

Creates a value of Diagnostics with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

dAlerts :: Lens' Diagnostics [Text] #

An unordered list of Alerts that the beacon has.

dBeaconName :: Lens' Diagnostics (Maybe Text) #

Resource name of the beacon. For Eddystone-EID beacons, this may be the beacon's current EID, or the beacon's "stable" Eddystone-UID.

dEstimatedLowBatteryDate :: Lens' Diagnostics (Maybe Date) #

The date when the battery is expected to be low. If the value is missing then there is no estimate for when the battery will be low. This value is only an estimate, not an exact date.

ListBeaconAttachmentsResponse

data ListBeaconAttachmentsResponse #

Response to ListBeaconAttachments that contains the requested attachments.

See: listBeaconAttachmentsResponse smart constructor.

Instances

Eq ListBeaconAttachmentsResponse # 
Data ListBeaconAttachmentsResponse # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ListBeaconAttachmentsResponse -> c ListBeaconAttachmentsResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ListBeaconAttachmentsResponse #

toConstr :: ListBeaconAttachmentsResponse -> Constr #

dataTypeOf :: ListBeaconAttachmentsResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ListBeaconAttachmentsResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ListBeaconAttachmentsResponse) #

gmapT :: (forall b. Data b => b -> b) -> ListBeaconAttachmentsResponse -> ListBeaconAttachmentsResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ListBeaconAttachmentsResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ListBeaconAttachmentsResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> ListBeaconAttachmentsResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ListBeaconAttachmentsResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ListBeaconAttachmentsResponse -> m ListBeaconAttachmentsResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ListBeaconAttachmentsResponse -> m ListBeaconAttachmentsResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ListBeaconAttachmentsResponse -> m ListBeaconAttachmentsResponse #

Show ListBeaconAttachmentsResponse # 
Generic ListBeaconAttachmentsResponse # 
ToJSON ListBeaconAttachmentsResponse # 
FromJSON ListBeaconAttachmentsResponse # 
type Rep ListBeaconAttachmentsResponse # 
type Rep ListBeaconAttachmentsResponse = D1 (MetaData "ListBeaconAttachmentsResponse" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" True) (C1 (MetaCons "ListBeaconAttachmentsResponse'" PrefixI True) (S1 (MetaSel (Just Symbol "_lbarAttachments") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe [BeaconAttachment]))))

listBeaconAttachmentsResponse :: ListBeaconAttachmentsResponse #

Creates a value of ListBeaconAttachmentsResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

lbarAttachments :: Lens' ListBeaconAttachmentsResponse [BeaconAttachment] #

The attachments that corresponded to the request params.

IndoorLevel

data IndoorLevel #

Indoor level, a human-readable string as returned by Google Maps APIs, useful to indicate which floor of a building a beacon is located on.

See: indoorLevel smart constructor.

Instances

Eq IndoorLevel # 
Data IndoorLevel # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> IndoorLevel -> c IndoorLevel #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c IndoorLevel #

toConstr :: IndoorLevel -> Constr #

dataTypeOf :: IndoorLevel -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c IndoorLevel) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c IndoorLevel) #

gmapT :: (forall b. Data b => b -> b) -> IndoorLevel -> IndoorLevel #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> IndoorLevel -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> IndoorLevel -> r #

gmapQ :: (forall d. Data d => d -> u) -> IndoorLevel -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> IndoorLevel -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> IndoorLevel -> m IndoorLevel #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> IndoorLevel -> m IndoorLevel #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> IndoorLevel -> m IndoorLevel #

Show IndoorLevel # 
Generic IndoorLevel # 

Associated Types

type Rep IndoorLevel :: * -> * #

ToJSON IndoorLevel # 
FromJSON IndoorLevel # 
type Rep IndoorLevel # 
type Rep IndoorLevel = D1 (MetaData "IndoorLevel" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" True) (C1 (MetaCons "IndoorLevel'" PrefixI True) (S1 (MetaSel (Just Symbol "_ilName") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe Text))))

indoorLevel :: IndoorLevel #

Creates a value of IndoorLevel with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

ilName :: Lens' IndoorLevel (Maybe Text) #

The name of this level.

EphemeralIdRegistrationParams

data EphemeralIdRegistrationParams #

Information a client needs to provision and register beacons that broadcast Eddystone-EID format beacon IDs, using Elliptic curve Diffie-Hellman key exchange. See the Eddystone specification at GitHub.

See: ephemeralIdRegistrationParams smart constructor.

Instances

Eq EphemeralIdRegistrationParams # 
Data EphemeralIdRegistrationParams # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> EphemeralIdRegistrationParams -> c EphemeralIdRegistrationParams #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c EphemeralIdRegistrationParams #

toConstr :: EphemeralIdRegistrationParams -> Constr #

dataTypeOf :: EphemeralIdRegistrationParams -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c EphemeralIdRegistrationParams) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c EphemeralIdRegistrationParams) #

gmapT :: (forall b. Data b => b -> b) -> EphemeralIdRegistrationParams -> EphemeralIdRegistrationParams #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> EphemeralIdRegistrationParams -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> EphemeralIdRegistrationParams -> r #

gmapQ :: (forall d. Data d => d -> u) -> EphemeralIdRegistrationParams -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> EphemeralIdRegistrationParams -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> EphemeralIdRegistrationParams -> m EphemeralIdRegistrationParams #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> EphemeralIdRegistrationParams -> m EphemeralIdRegistrationParams #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> EphemeralIdRegistrationParams -> m EphemeralIdRegistrationParams #

Show EphemeralIdRegistrationParams # 
Generic EphemeralIdRegistrationParams # 
ToJSON EphemeralIdRegistrationParams # 
FromJSON EphemeralIdRegistrationParams # 
type Rep EphemeralIdRegistrationParams # 
type Rep EphemeralIdRegistrationParams = D1 (MetaData "EphemeralIdRegistrationParams" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" False) (C1 (MetaCons "EphemeralIdRegistrationParams'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_eirpMinRotationPeriodExponent") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Word32)))) ((:*:) (S1 (MetaSel (Just Symbol "_eirpMaxRotationPeriodExponent") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Word32)))) (S1 (MetaSel (Just Symbol "_eirpServiceEcdhPublicKey") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bytes))))))

ephemeralIdRegistrationParams :: EphemeralIdRegistrationParams #

Creates a value of EphemeralIdRegistrationParams with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

eirpMinRotationPeriodExponent :: Lens' EphemeralIdRegistrationParams (Maybe Word32) #

Indicates the minimum rotation period supported by the service. See EddystoneEidRegistration.rotation_period_exponent

eirpMaxRotationPeriodExponent :: Lens' EphemeralIdRegistrationParams (Maybe Word32) #

Indicates the maximum rotation period supported by the service. See EddystoneEidRegistration.rotation_period_exponent

eirpServiceEcdhPublicKey :: Lens' EphemeralIdRegistrationParams (Maybe ByteString) #

The beacon service's public key for use by a beacon to derive its Identity Key using Elliptic Curve Diffie-Hellman key exchange.

BeaconInfo

data BeaconInfo #

A subset of beacon information served via the `beaconinfo.getforobserved` method, which you call when users of your app encounter your beacons.

See: beaconInfo smart constructor.

Instances

Eq BeaconInfo # 
Data BeaconInfo # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> BeaconInfo -> c BeaconInfo #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c BeaconInfo #

toConstr :: BeaconInfo -> Constr #

dataTypeOf :: BeaconInfo -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c BeaconInfo) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c BeaconInfo) #

gmapT :: (forall b. Data b => b -> b) -> BeaconInfo -> BeaconInfo #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> BeaconInfo -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> BeaconInfo -> r #

gmapQ :: (forall d. Data d => d -> u) -> BeaconInfo -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> BeaconInfo -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> BeaconInfo -> m BeaconInfo #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> BeaconInfo -> m BeaconInfo #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> BeaconInfo -> m BeaconInfo #

Show BeaconInfo # 
Generic BeaconInfo # 

Associated Types

type Rep BeaconInfo :: * -> * #

ToJSON BeaconInfo # 
FromJSON BeaconInfo # 
type Rep BeaconInfo # 
type Rep BeaconInfo = D1 (MetaData "BeaconInfo" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" False) (C1 (MetaCons "BeaconInfo'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_biAttachments") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [AttachmentInfo]))) ((:*:) (S1 (MetaSel (Just Symbol "_biBeaconName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_biAdvertisedId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe AdvertisedId))))))

beaconInfo :: BeaconInfo #

Creates a value of BeaconInfo with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

biAttachments :: Lens' BeaconInfo [AttachmentInfo] #

Attachments matching the type(s) requested. May be empty if no attachment types were requested, or if none matched.

biBeaconName :: Lens' BeaconInfo (Maybe Text) #

The name under which the beacon is registered.

biAdvertisedId :: Lens' BeaconInfo (Maybe AdvertisedId) #

The ID advertised by the beacon.

Observation

data Observation #

Represents one beacon observed once.

See: observation smart constructor.

Instances

Eq Observation # 
Data Observation # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Observation -> c Observation #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Observation #

toConstr :: Observation -> Constr #

dataTypeOf :: Observation -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Observation) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Observation) #

gmapT :: (forall b. Data b => b -> b) -> Observation -> Observation #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Observation -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Observation -> r #

gmapQ :: (forall d. Data d => d -> u) -> Observation -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Observation -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Observation -> m Observation #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Observation -> m Observation #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Observation -> m Observation #

Show Observation # 
Generic Observation # 

Associated Types

type Rep Observation :: * -> * #

ToJSON Observation # 
FromJSON Observation # 
type Rep Observation # 
type Rep Observation = D1 (MetaData "Observation" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" False) (C1 (MetaCons "Observation'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_oTelemetry") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bytes))) ((:*:) (S1 (MetaSel (Just Symbol "_oTimestampMs") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_oAdvertisedId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe AdvertisedId))))))

observation :: Observation #

Creates a value of Observation with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

oTelemetry :: Lens' Observation (Maybe ByteString) #

The array of telemetry bytes received from the beacon. The server is responsible for parsing it. This field may frequently be empty, as with a beacon that transmits telemetry only occasionally.

oTimestampMs :: Lens' Observation (Maybe Text) #

Time when the beacon was observed.

oAdvertisedId :: Lens' Observation (Maybe AdvertisedId) #

The ID advertised by the beacon the client has encountered. Clients may submit an Eddystone-EID `advertised_id`. If the client is not authorized to resolve the given Eddystone-EID, no data will be returned for that beacon. Required.

BeaconAttachment

data BeaconAttachment #

Project-specific data associated with a beacon.

See: beaconAttachment smart constructor.

Instances

Eq BeaconAttachment # 
Data BeaconAttachment # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> BeaconAttachment -> c BeaconAttachment #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c BeaconAttachment #

toConstr :: BeaconAttachment -> Constr #

dataTypeOf :: BeaconAttachment -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c BeaconAttachment) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c BeaconAttachment) #

gmapT :: (forall b. Data b => b -> b) -> BeaconAttachment -> BeaconAttachment #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> BeaconAttachment -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> BeaconAttachment -> r #

gmapQ :: (forall d. Data d => d -> u) -> BeaconAttachment -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> BeaconAttachment -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> BeaconAttachment -> m BeaconAttachment #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> BeaconAttachment -> m BeaconAttachment #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> BeaconAttachment -> m BeaconAttachment #

Show BeaconAttachment # 
Generic BeaconAttachment # 
ToJSON BeaconAttachment # 
FromJSON BeaconAttachment # 
type Rep BeaconAttachment # 
type Rep BeaconAttachment = D1 (MetaData "BeaconAttachment" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" False) (C1 (MetaCons "BeaconAttachment'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_baData") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bytes))) ((:*:) (S1 (MetaSel (Just Symbol "_baAttachmentName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_baNamespacedType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

beaconAttachment :: BeaconAttachment #

Creates a value of BeaconAttachment with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

baData :: Lens' BeaconAttachment (Maybe ByteString) #

An opaque data container for client-provided data. Must be base64 encoded in HTTP requests, and will be so encoded (with padding) in responses. Required.

baAttachmentName :: Lens' BeaconAttachment (Maybe Text) #

Resource name of this attachment. Attachment names have the format: beacons/beacon_id/attachments/attachment_id. Leave this empty on creation.

baNamespacedType :: Lens' BeaconAttachment (Maybe Text) #

Specifies what kind of attachment this is. Tells a client how to interpret the `data` field. Format is namespace/type. Namespace provides type separation between clients. Type describes the type of `data`, for use by the client when parsing the `data` field. Required.

ListDiagnosticsResponse

data ListDiagnosticsResponse #

Response that contains the requested diagnostics.

See: listDiagnosticsResponse smart constructor.

Instances

Eq ListDiagnosticsResponse # 
Data ListDiagnosticsResponse # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ListDiagnosticsResponse -> c ListDiagnosticsResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ListDiagnosticsResponse #

toConstr :: ListDiagnosticsResponse -> Constr #

dataTypeOf :: ListDiagnosticsResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ListDiagnosticsResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ListDiagnosticsResponse) #

gmapT :: (forall b. Data b => b -> b) -> ListDiagnosticsResponse -> ListDiagnosticsResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ListDiagnosticsResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ListDiagnosticsResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> ListDiagnosticsResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ListDiagnosticsResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ListDiagnosticsResponse -> m ListDiagnosticsResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ListDiagnosticsResponse -> m ListDiagnosticsResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ListDiagnosticsResponse -> m ListDiagnosticsResponse #

Show ListDiagnosticsResponse # 
Generic ListDiagnosticsResponse # 
ToJSON ListDiagnosticsResponse # 
FromJSON ListDiagnosticsResponse # 
type Rep ListDiagnosticsResponse # 
type Rep ListDiagnosticsResponse = D1 (MetaData "ListDiagnosticsResponse" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" False) (C1 (MetaCons "ListDiagnosticsResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_ldrNextPageToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_ldrDiagnostics") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Diagnostics])))))

listDiagnosticsResponse :: ListDiagnosticsResponse #

Creates a value of ListDiagnosticsResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

ldrNextPageToken :: Lens' ListDiagnosticsResponse (Maybe Text) #

Token that can be used for pagination. Returned only if the request matches more beacons than can be returned in this response.

ldrDiagnostics :: Lens' ListDiagnosticsResponse [Diagnostics] #

The diagnostics matching the given request.

AdvertisedId

data AdvertisedId #

Defines a unique identifier of a beacon as broadcast by the device.

See: advertisedId smart constructor.

Instances

Eq AdvertisedId # 
Data AdvertisedId # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> AdvertisedId -> c AdvertisedId #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c AdvertisedId #

toConstr :: AdvertisedId -> Constr #

dataTypeOf :: AdvertisedId -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c AdvertisedId) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c AdvertisedId) #

gmapT :: (forall b. Data b => b -> b) -> AdvertisedId -> AdvertisedId #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> AdvertisedId -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> AdvertisedId -> r #

gmapQ :: (forall d. Data d => d -> u) -> AdvertisedId -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> AdvertisedId -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> AdvertisedId -> m AdvertisedId #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> AdvertisedId -> m AdvertisedId #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> AdvertisedId -> m AdvertisedId #

Show AdvertisedId # 
Generic AdvertisedId # 

Associated Types

type Rep AdvertisedId :: * -> * #

ToJSON AdvertisedId # 
FromJSON AdvertisedId # 
type Rep AdvertisedId # 
type Rep AdvertisedId = D1 (MetaData "AdvertisedId" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" False) (C1 (MetaCons "AdvertisedId'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_aiId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bytes))) (S1 (MetaSel (Just Symbol "_aiType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

advertisedId :: AdvertisedId #

Creates a value of AdvertisedId with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

aiId :: Lens' AdvertisedId (Maybe ByteString) #

The actual beacon identifier, as broadcast by the beacon hardware. Must be base64 encoded in HTTP requests, and will be so encoded (with padding) in responses. The base64 encoding should be of the binary byte-stream and not any textual (such as hex) representation thereof. Required.

aiType :: Lens' AdvertisedId (Maybe Text) #

Specifies the identifier type. Required.

ListBeaconsResponse

data ListBeaconsResponse #

Response that contains list beacon results and pagination help.

See: listBeaconsResponse smart constructor.

Instances

Eq ListBeaconsResponse # 
Data ListBeaconsResponse # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ListBeaconsResponse -> c ListBeaconsResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ListBeaconsResponse #

toConstr :: ListBeaconsResponse -> Constr #

dataTypeOf :: ListBeaconsResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ListBeaconsResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ListBeaconsResponse) #

gmapT :: (forall b. Data b => b -> b) -> ListBeaconsResponse -> ListBeaconsResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ListBeaconsResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ListBeaconsResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> ListBeaconsResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ListBeaconsResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ListBeaconsResponse -> m ListBeaconsResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ListBeaconsResponse -> m ListBeaconsResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ListBeaconsResponse -> m ListBeaconsResponse #

Show ListBeaconsResponse # 
Generic ListBeaconsResponse # 
ToJSON ListBeaconsResponse # 
FromJSON ListBeaconsResponse # 
type Rep ListBeaconsResponse # 
type Rep ListBeaconsResponse = D1 (MetaData "ListBeaconsResponse" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" False) (C1 (MetaCons "ListBeaconsResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_lbrNextPageToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_lbrBeacons") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Beacon]))) (S1 (MetaSel (Just Symbol "_lbrTotalCount") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int64)))))))

listBeaconsResponse :: ListBeaconsResponse #

Creates a value of ListBeaconsResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

lbrNextPageToken :: Lens' ListBeaconsResponse (Maybe Text) #

An opaque pagination token that the client may provide in their next request to retrieve the next page of results.

lbrBeacons :: Lens' ListBeaconsResponse [Beacon] #

The beacons that matched the search criteria.

lbrTotalCount :: Lens' ListBeaconsResponse (Maybe Int64) #

Estimate of the total number of beacons matched by the query. Higher values may be less accurate.

GetInfoForObservedBeaconsResponse

data GetInfoForObservedBeaconsResponse #

Information about the requested beacons, optionally including attachment data.

See: getInfoForObservedBeaconsResponse smart constructor.

Instances

Eq GetInfoForObservedBeaconsResponse # 
Data GetInfoForObservedBeaconsResponse # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> GetInfoForObservedBeaconsResponse -> c GetInfoForObservedBeaconsResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c GetInfoForObservedBeaconsResponse #

toConstr :: GetInfoForObservedBeaconsResponse -> Constr #

dataTypeOf :: GetInfoForObservedBeaconsResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c GetInfoForObservedBeaconsResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c GetInfoForObservedBeaconsResponse) #

gmapT :: (forall b. Data b => b -> b) -> GetInfoForObservedBeaconsResponse -> GetInfoForObservedBeaconsResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> GetInfoForObservedBeaconsResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> GetInfoForObservedBeaconsResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> GetInfoForObservedBeaconsResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> GetInfoForObservedBeaconsResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> GetInfoForObservedBeaconsResponse -> m GetInfoForObservedBeaconsResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> GetInfoForObservedBeaconsResponse -> m GetInfoForObservedBeaconsResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> GetInfoForObservedBeaconsResponse -> m GetInfoForObservedBeaconsResponse #

Show GetInfoForObservedBeaconsResponse # 
Generic GetInfoForObservedBeaconsResponse # 
ToJSON GetInfoForObservedBeaconsResponse # 
FromJSON GetInfoForObservedBeaconsResponse # 
type Rep GetInfoForObservedBeaconsResponse # 
type Rep GetInfoForObservedBeaconsResponse = D1 (MetaData "GetInfoForObservedBeaconsResponse" "Network.Google.ProximityBeacon.Types.Product" "gogol-proximitybeacon-0.3.0-9AOEtPyhwPrAmipeP38soc" True) (C1 (MetaCons "GetInfoForObservedBeaconsResponse'" PrefixI True) (S1 (MetaSel (Just Symbol "_gifobrBeacons") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe [BeaconInfo]))))

getInfoForObservedBeaconsResponse :: GetInfoForObservedBeaconsResponse #

Creates a value of GetInfoForObservedBeaconsResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

gifobrBeacons :: Lens' GetInfoForObservedBeaconsResponse [BeaconInfo] #

Public information about beacons. May be empty if the request matched no beacons.