EILRequestRemoveLocationPin Class Reference

Inherits from NSObject
Declared in EILRequestRemoveLocationPin.h
EILRequestRemoveLocationPin.m

Overview

Request for removing a new location from Estimote Cloud.

Note that in order to have request working you need to be authenticated in Estimote Cloud. To do that you have to call [ESTConfig setupAppID:andAppToken:] first. You can find your API App ID and API App Token in the Apps: http://cloud.estimote.com/#/apps section of the Estimote Cloud: http://cloud.estimote.com/.

– initWithPin:

Returns a new request object for removing specified pin inside specified location from Estimote Cloud

- (instancetype)initWithPin:(EILLocationPin *)locationPin

Parameters

locationPin

A location pin to be removed from specified location from Estimote Cloud.

Return Value

A request initialized with location pin.

Declared In

EILRequestRemoveLocationPin.h

– initWithPinIdentifier:

Returns a new request object for removing specified pin inside specified location from Estimote Cloud

- (instancetype)initWithPinIdentifier:(NSNumber *)identifier

Parameters

locationPin

A location pin to be removed from specified location from Estimote Cloud.

Return Value

A request initialized with location pin identifier.

Declared In

EILRequestRemoveLocationPin.h

– sendRequestWithCompletion:

Sends request to Estimote Cloud with completion block.

- (void)sendRequestWithCompletion:(EILRequestRemoveLocationPinBlock)completion

Discussion

param completion Completion block to be executed when the request finishes.

Declared In

EILRequestRemoveLocationPin.h