| 11 | * @see https://openid.net/specs/openid-connect-core-1_0.html#AddressClaim |
| 12 | */ |
| 13 | export interface OidcAddressClaim { |
| 14 | /** Full mailing address, formatted for display or use on a mailing label. This field MAY contain multiple lines, separated by newlines. Newlines can be represented either as a carriage return/line feed pair ("\\r\\n") or as a single line feed character ("\\n"). */ |
| 15 | formatted?: string; |
| 16 | /** Full street address component, which MAY include house number, street name, Post Office Box, and multi-line extended street address information. This field MAY contain multiple lines, separated by newlines. Newlines can be represented either as a carriage return/line feed pair ("\\r\\n") or as a single line feed character ("\\n"). */ |
| 17 | street_address?: string; |
| 18 | /** City or locality component. */ |
| 19 | locality?: string; |
| 20 | /** State, province, prefecture, or region component. */ |
| 21 | region?: string; |
| 22 | /** Zip code or postal code component. */ |
| 23 | postal_code?: string; |
| 24 | /** Country name component. */ |
| 25 | country?: string; |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * Standard OpenID Connect claims. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…