Interface IGraphPhysicalAddress
Represents the street address of a resource such as a contact or event.
Inherited Members
Namespace: PnP.Core.Model.Teams
Assembly: PnP.Core.dll
Syntax
public interface IGraphPhysicalAddress : IDataModel<IGraphPhysicalAddress>, IDataModelParent, IDataModelWithContext, ISupportModules<IGraphPhysicalAddress>
Properties
City
The city.
Declaration
string City { get; set; }
Property Value
System.String
|
CountryOrRegion
The country or region. It's a free-format string value, for example, "United States".
Declaration
string CountryOrRegion { get; set; }
Property Value
System.String
|
PostalCode
The postal code.
Declaration
string PostalCode { get; set; }
Property Value
System.String
|
State
The state.
Declaration
string State { get; set; }
Property Value
System.String
|
Street
The street.
Declaration
string Street { get; set; }
Property Value
System.String
|