Skip to main content
Version: 5.7.0

IncrementShieldOnFor

Increments shield on for the specified number of minutes.

ServiceOperation
matchMakingINCREMENT_SHIELD_ON_FOR

Method Parameters

ParameterDescription
minutesNumber of minutes to increment the shield on for.

Usage

http://localhost:3000
int minutes = 10;
SuccessCallback successCallback = (response, cbObject) =>
{
Debug.Log(string.Format("Success | {0}", response));
};
FailureCallback failureCallback = (status, code, error, cbObject) =>
{
Debug.Log(string.Format("Failed | {0} {1} {2}", status, code, error));
};

_bc.MatchMakingService.IncrementShieldOnFor(minutes, successCallback, failureCallback);
JSON Response
{
"status": 200,
"data": null
}