userCurrency: isSet()

in src/react-native-app/protos/demo.ts [2353:2362]


      userCurrency: isSet(object.userCurrency) ? globalThis.String(object.userCurrency) : "",
      address: isSet(object.address) ? Address.fromJSON(object.address) : undefined,
      email: isSet(object.email) ? globalThis.String(object.email) : "",
      creditCard: isSet(object.creditCard) ? CreditCardInfo.fromJSON(object.creditCard) : undefined,
    };
  },

  toJSON(message: PlaceOrderRequest): unknown {
    const obj: any = {};
    if (message.userId !== "") {