> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# XStoreProductKind

> XStoreProductKind

# XStoreProductKind

製品の種類を示します。

## Syntax

```cpp theme={null}
enum class XStoreProductKind  : uint32_t  
{  
    None = 0x00,  
    Consumable = 0x01,  
    Durable = 0x02,  
    Game = 0x04,  
    Pass = 0x08,  
    UnmanagedConsumable = 0x10,  
}  
```

## Constants

| 定数                  | 説明                                |
| ------------------- | --------------------------------- |
| None                | 製品の種類なし。                          |
| Consumable          | ストア管理の消費型製品 (数量を持つ)。              |
| Durable             | 耐久型製品。                            |
| Game                | 基本ゲーム製品。                          |
| Pass                | XBOX Game Pass などのストア管理サブスクリプション。 |
| UnmanagedConsumable | 開発者管理の消費型製品 (再購入前にフルフィルメントが必要)    |

## Remarks

**XStoreProductKind** は、特定の種類の製品に関する情報を取得するために多くの XStore クエリでフィルターとして使用されます。
**XStoreProductKind** はまた、ストア製品を記述する [XStoreProduct](/reference/system/xstore/structs/xstoreproduct) 構造体のメンバーでもあります。
**XStoreProductKind** はフラグ列挙型であり、その値を組み合わせて複数種類の製品を一度に表すことができます。

アドオン バンドルは `Durable` 型ですが、ゲーム バンドル (ゲームと同じレベルで作成されるもの) は `Game` 型です。

`Pass` は、Developer Partner Manager または Microsoft の担当者を通じて作成および管理される、ストア管理のサブスクリプションを指します。
ストア管理サブスクリプションは、アドオン サブスクリプションとは異なります。
アドオン サブスクリプションは、パートナー センターのゲームのアドオン ページで構成されます。

## Requirements

**ヘッダー:** XStore.h (XGameRuntime.h に含まれる)

**サポートされているプラットフォーム:** Windows、XBOX One 本体および XBOX Series 本体

## See also

[XStore](/reference/system/xstore/xstore_members)\
[XStoreQueryAssociatedProductsAsync](/reference/system/xstore/functions/xstorequeryassociatedproductsasync)\
[XStoreQueryEntitledProductsAsync](/reference/system/xstore/functions/xstorequeryentitledproductsasync)\
[XStoreQueryProductForPackageAsync](/reference/system/xstore/functions/xstorequeryproductforpackageasync)\
[XStoreQueryProductsAsync](/reference/system/xstore/functions/xstorequeryproductsasync)\
[XStoreProduct](/reference/system/xstore/structs/xstoreproduct)


## Related topics

- [XStore](/ja-jp/reference/system/xstore/xstore_members.md)
- [XStoreShowAssociatedProductsUIAsync](/ja-jp/reference/system/xstore/functions/xstoreshowassociatedproductsuiasync.md)
- [XStoreQueryProductForPackageAsync](/ja-jp/reference/system/xstore/functions/xstorequeryproductforpackageasync.md)
- [XStoreProduct](/ja-jp/reference/system/xstore/structs/xstoreproduct.md)
- [XStoreQueryProductsAsync](/ja-jp/reference/system/xstore/functions/xstorequeryproductsasync.md)
