ptr method

Offer ptr(
  1. String ptr
)

Sets the pointer record of the data asset associated to this Offer.

Additionally, this method returns the Offer object to enable convenient chaining of method calls during offer initialization.

Implementation

Offer ptr(String ptr) {
  _ptr = ptr;
  return this;
}