setContentAvailable method

ApnsMpnBuilder setContentAvailable(
  1. String? val
)

Sets the aps.content-available field with a string value.

  • val: A string to be used for the aps.content-available field value, or nil to clear it.

Implementation

ApnsMpnBuilder setContentAvailable(String? val) {
  _contentAvailable = val;
  return this;
}