UpdateFeatureOnlineStoreRequest.fromJson constructor

UpdateFeatureOnlineStoreRequest.fromJson(
  1. Object? j
)

Implementation

factory UpdateFeatureOnlineStoreRequest.fromJson(Object? j) {
  final json = j as Map<String, Object?>;
  return UpdateFeatureOnlineStoreRequest(
    featureOnlineStore: switch (json['featureOnlineStore']) {
      null => null,
      Object $1 => FeatureOnlineStore.fromJson($1),
    },
    updateMask: switch (json['updateMask']) {
      null => null,
      Object $1 => protobuf.FieldMask.fromJson($1),
    },
  );
}