InsuranceNetwork
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
JSON 表現 |
{
"networkId": string,
"networkNames": {
string: string,
...
},
"payerNames": {
string: string,
...
},
"state": enum (NetworkState )
} |
フィールド |
networkId |
string
必須。Google によって生成されたこの保険ネットワークの ID。
|
networkNames |
map (key: string, value: string)
出力専用。リクエストされた言語でのネットワーク表示名のマップ。言語がキー、ローカライズされた表示名が値です。デフォルトでは英語の表示名が設定されています。 "key": value ペアのリストを含むオブジェクト。例: { "name": "wrench", "mass": "1.3kg", "count": "3" }
|
payerNames |
map (key: string, value: string)
出力専用。リクエストされた言語での支払人の表示名のマップ。言語がキー、ローカライズされた表示名が値です。デフォルトでは英語の表示名が設定されています。 "key": value ペアのリストを含むオブジェクト。例: { "name": "wrench", "mass": "1.3kg", "count": "3" }
|
state |
enum (NetworkState )
出力専用。この保険ネットワークの状態。
|
NetworkState
列挙型 |
NETWORK_STATE_UNSPECIFIED |
デフォルト値。 |
ACCEPTED |
このネットワークはこのロケーションで許可されています。 |
PENDING_ADD |
このネットワークを承認済みリストに追加するための保留中のリクエストがあります。 |
PENDING_DELETE |
承認済みリストからこのネットワークを削除するという保留中のリクエストがあります。 |
NOT_ACCEPTED |
このネットワークは、この場所では承認されていません。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-25 UTC。
[null,null,["最終更新日 2025-07-25 UTC。"],[[["\u003cp\u003eInsurance networks have a unique ID, display names in various languages, and a current state.\u003c/p\u003e\n"],["\u003cp\u003eThe network state indicates whether a location accepts, is pending to accept/remove, or does not accept the network.\u003c/p\u003e\n"],["\u003cp\u003eYou can access network and payer display names in different languages, with English as the default.\u003c/p\u003e\n"],["\u003cp\u003eGoogle generates a unique \u003ccode\u003enetworkId\u003c/code\u003e for each insurance network.\u003c/p\u003e\n"]]],[],null,["# InsuranceNetwork\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n- [NetworkState](#NetworkState)\n\nA single insurance network. Next id: 5\n\n| JSON representation ||\n|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---|\n| ``` { \"networkId\": string, \"networkNames\": { string: string, ... }, \"payerNames\": { string: string, ... }, \"state\": enum (/my-business/reference/rest/v4/InsuranceNetwork#NetworkState) } ``` |\n\n| Fields ||\n|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `networkId` | `string` Required. The id of this insurance network generated by Google. |\n| `networkNames` | `map (key: string, value: string)` Output only. A map of network display names in requested languages where the language is the key and localized display name is the value. The display name in English is set by default. An object containing a list of `\"key\": value` pairs. Example: `{ \"name\": \"wrench\", \"mass\": \"1.3kg\", \"count\": \"3\" }`. |\n| `payerNames` | `map (key: string, value: string)` Output only. A map of payer display names in requested languages where the language is the key and localized display name is the value. The display name in English is set by default. An object containing a list of `\"key\": value` pairs. Example: `{ \"name\": \"wrench\", \"mass\": \"1.3kg\", \"count\": \"3\" }`. |\n| `state` | `enum (`[NetworkState](/my-business/reference/rest/v4/InsuranceNetwork#NetworkState)`)` Output only. The state of this insurance network. |\n\nNetworkState\n------------\n\nThe state of an insurance network regarding this location.\n\n| Enums ||\n|-----------------------------|---------------------------------------------------------------------------|\n| `NETWORK_STATE_UNSPECIFIED` | Default value. |\n| `ACCEPTED` | This network is accepted by this location. |\n| `PENDING_ADD` | There is a pending request to add this network to the accepted list. |\n| `PENDING_DELETE` | There is a pending request to remove this network from the accepted list. |\n| `NOT_ACCEPTED` | This network is not accepted by this location. |"]]