city: isSet()

in src/frontend/protos/demo.ts [1521:1530]


      city: isSet(object.city) ? globalThis.String(object.city) : "",
      state: isSet(object.state) ? globalThis.String(object.state) : "",
      country: isSet(object.country) ? globalThis.String(object.country) : "",
      zipCode: isSet(object.zipCode) ? globalThis.String(object.zipCode) : "",
    };
  },

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