다음을 통해 공유


PaymentAddress 생성자

정의

오버로드

PaymentAddress()

PaymentAddress 클래스의 새 인스턴스를 초기화합니다.

PaymentAddress(String, IList<String>, String, String, String, String, String, String, String, String, String)

PaymentAddress 클래스의 새 인스턴스를 초기화합니다.

PaymentAddress()

PaymentAddress 클래스의 새 인스턴스를 초기화합니다.

public PaymentAddress();
Public Sub New ()

적용 대상

PaymentAddress(String, IList<String>, String, String, String, String, String, String, String, String, String)

PaymentAddress 클래스의 새 인스턴스를 초기화합니다.

public PaymentAddress(string country = default, System.Collections.Generic.IList<string> addressLine = default, string region = default, string city = default, string dependentLocality = default, string postalCode = default, string sortingCode = default, string languageCode = default, string organization = default, string recipient = default, string phone = default);
new Microsoft.Bot.Schema.PaymentAddress : string * System.Collections.Generic.IList<string> * string * string * string * string * string * string * string * string * string -> Microsoft.Bot.Schema.PaymentAddress
Public Sub New (Optional country As String = Nothing, Optional addressLine As IList(Of String) = Nothing, Optional region As String = Nothing, Optional city As String = Nothing, Optional dependentLocality As String = Nothing, Optional postalCode As String = Nothing, Optional sortingCode As String = Nothing, Optional languageCode As String = Nothing, Optional organization As String = Nothing, Optional recipient As String = Nothing, Optional phone As String = Nothing)

매개 변수

country
String

CLDR(Common Locale Data Repository) 지역 코드입니다. 예를 들어 미국, GB, CN 또는 JP입니다.

addressLine
IList<String>

이는 주소의 가장 구체적인 부분입니다. 예를 들어 거리 이름, 집 번호, 아파트 번호, 시골 배달 경로, 설명 지침 또는 우체국 박스 번호가 포함될 수 있습니다.

region
String

이것은 국가의 최상위 행정 세분화입니다. 예를 들어 이는 주, 지방, 모세포 또는 현일 수 있습니다.

city
String

주소의 도시/도시 부분입니다.

dependentLocality
String

이는 도시 내의 종속 지역 또는 하위 지역입니다. 예를 들어, 지역, 자치구, 지구 또는 영국 종속 지역에 사용됩니다.

postalCode
String

인도의 PIN 코드라고도 하는 우편 번호 또는 우편 번호입니다.

sortingCode
String

예를 들어 프랑스에서 사용되는 정렬 코드입니다.

languageCode
String

주소에 대한 BCP-47 언어 코드입니다. 표시할 주소의 서식을 지정할 때 필드 구분 기호 및 필드 순서를 결정하는 데 사용됩니다.

organization
String

이 주소의 조직, 회사, 회사 또는 기관입니다.

recipient
String

받는 사람 또는 연락처의 이름입니다.

phone
String

받는 사람 또는 연락처의 전화 번호입니다.

적용 대상