$application
$application : string
The Pushwoosh application ID for which one to set tags.
Class which represents Pushwoosh '/setTags' request.
create() : \Gomoob\Pushwoosh\Model\Request\SetTagsRequest
Utility function used to create a new instance of the <tt>SetTagsRequest</tt>.
the new created instance.
addTag(string $tagName, mixed $tagValue)
Add a new tag to the Pushwoosh tags.
NOTE: This function cannot be used to overwrite an existing tag, use the '#setTag($tagName, $tagValue)' function if you want to overwrite a tag.
string | $tagName | the name of the tag to add or update. |
mixed | $tagValue | the value of the tag to set. |
if a tag having the specified name has already been added.
getHwid() : string
Gets the Unique string to identify the device (Please note that accessing UDID on iOS is deprecated and not allowed, one of the alternative ways now is to use MAC address).
the Unique string to identify the device (Please note that accessing UDID on iOS is deprecated and
not allowed, one of the alternative ways now is to use MAC address).
setApplication(string $application) : \Gomoob\Pushwoosh\Model\Request\SetTagsRequest
Sets the Pushwoosh application ID for which one to set tags.
string | $application | the the Pushwoosh application ID for which one to set tags. |
this instance.
setHwid(string $hwid) : \Gomoob\Pushwoosh\Model\Request\SetTagsRequest
Sets the Unique string to identify the device (Please note that accessing UDID on iOS is deprecated and not allowed, one of the alternative ways now is to use MAC address).
string | $hwid | the Unique string to identify the device (Please note that accessing UDID on iOS is
|
this instance.
setTags(array $tags) : \Gomoob\Pushwoosh\Model\Request\SetTagsRequest
Sets the Pushwoosh tags.
array | $tags | the Pushwoosh tags. |
this instance.