Skip to content

Commit

Permalink
add: organization city config key
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgelionis committed May 22, 2024
1 parent 7f20f91 commit 7a68ad3
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public GoogleMapsExternalSearchJobData(IDictionary<string, object> configuration
OrgNameKey = GetValue<string>(configuration, Constants.KeyName.OrgNameKey);
OrgAddressKey = GetValue<string>(configuration, Constants.KeyName.OrgAddressKey);
OrgZipCodeKey = GetValue<string>(configuration, Constants.KeyName.OrgZipCodeKey);
OrgCityKey = GetValue<string>(configuration, Constants.KeyName.OrgCityKey);
OrgStateKey = GetValue<string>(configuration, Constants.KeyName.OrgStateKey);
OrgCountryKey = GetValue<string>(configuration, Constants.KeyName.OrgCountryKey);
LocationAddressKey = GetValue<string>(configuration, Constants.KeyName.LocationAddressKey);
Expand All @@ -30,6 +31,7 @@ public GoogleMapsExternalSearchJobData(IDictionary<string, object> configuration
{ Constants.KeyName.OrgNameKey, OrgNameKey },
{ Constants.KeyName.OrgAddressKey, OrgAddressKey },
{ Constants.KeyName.OrgZipCodeKey, OrgZipCodeKey },
{ Constants.KeyName.OrgCityKey, OrgCityKey },
{ Constants.KeyName.OrgStateKey, OrgStateKey },
{ Constants.KeyName.OrgCountryKey, OrgCountryKey },
{ Constants.KeyName.LocationAddressKey, LocationAddressKey },
Expand All @@ -46,6 +48,7 @@ public GoogleMapsExternalSearchJobData(IDictionary<string, object> configuration
public string OrgNameKey { get; set; }
public string OrgAddressKey { get; set; }
public string OrgZipCodeKey { get; set; }
public string OrgCityKey { get; set; }
public string OrgStateKey { get; set; }
public string OrgCountryKey { get; set; }
public string LocationAddressKey { get; set; }
Expand Down

0 comments on commit 7a68ad3

Please sign in to comment.