Skip to content

Latest commit

 

History

History
55 lines (49 loc) · 1.69 KB

File metadata and controls

55 lines (49 loc) · 1.69 KB

Address

Properties

Name Type Description Notes
HouseNumber String [optional]
PreDirection String [optional]
StreetName String [optional]
StreetSuffix String [optional]
PostDirection String [optional]
AddressLine2 String [optional]
City String [optional]
State String [optional]
Zip String [optional]
CountryCode String [optional]
Latitude Double [optional]
Longitude Double [optional]
AddressLine1 String [optional] [readonly]
AddressLine3 String [optional] [readonly]
FormattedAddress String [optional] [readonly]
FormattedAddressWithCulture String [optional]
FormattedZipWithCulture String [optional]
FormattedZip String [optional] [readonly]

Examples

  • Prepare the resource
$Address = Initialize-RealGreenSaPSAddress  -HouseNumber null `
 -PreDirection null `
 -StreetName null `
 -StreetSuffix null `
 -PostDirection null `
 -AddressLine2 null `
 -City null `
 -State null `
 -Zip null `
 -CountryCode null `
 -Latitude null `
 -Longitude null `
 -AddressLine1 null `
 -AddressLine3 null `
 -FormattedAddress null `
 -FormattedAddressWithCulture null `
 -FormattedZipWithCulture null `
 -FormattedZip null
  • Convert the resource to JSON
$Address | ConvertTo-JSON

[Back to Model list] [Back to API list] [Back to README]