> ## 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.

# XStoreSku

> XStoreSku

# XStoreSku

ストア SKU を表します。

## Syntax

```cpp theme={null}
typedef struct XStoreSku {  
    const char* skuId;  
    const char* title;  
    const char* description;  
    const char* language;  
    XStorePrice price;  
    bool isTrial;  
    bool isInUserCollection;  
    XStoreCollectionData collectionData;  
    bool isSubscription;  
    XStoreSubscriptionInfo subscriptionInfo;  
    uint32_t bundledSkusCount;  
    const char** bundledSkus;  
    uint32_t imagesCount;  
    XStoreImage* images;  
    uint32_t videosCount;  
    XStoreVideo* videos;  
    uint32_t availabilitiesCount;  
    XStoreAvailability* availabilities;  
} XStoreSku  
```

### Members

*skuId*\
型: const char\*

ストア SKU の ID。

*title*\
型: const char\*

SKU のタイトル。

*description*\
型: const char\*

SKU の説明。

*language*\
型: const char\*

タイトルと説明文の言語を表す国際標準化機構 (ISO) 識別子。[https://msdn.microsoft.com/library/ms693062(v=vs.85).aspx](https://msdn.microsoft.com/library/ms693062\(v=vs.85\).aspx) を参照してください。

*price*\
型: [XStorePrice](/reference/system/xstore/structs/xstoreprice)

ストア製品の価格情報。

*isTrial*\
型: bool

ストア SKU が試用版かどうかを示します。

*isInUserCollection*\
型: bool

SKU がユーザーのコレクションに含まれているかどうかを示します。

*collectionData*\
型: [XStoreCollectionData](/reference/system/xstore/structs/xstorecollectiondata)

製品が消耗型の場合の数量を含む、ユーザーのコレクション内の製品に関する追加データ。

*isSubscription*\
型: bool

ストア SKU がサブスクリプションかどうかを示します。

*subscriptionInfo*\
型: [XStoreSubscriptionInfo](/reference/system/xstore/structs/xstoresubscriptioninfo)

SKU のサブスクリプション情報。

*bundledSkusCount*\
型: uint32\_t

**bundledSkus** 内の要素数。

*bundledSkus*\
型: const char\*\*

バンドルされている SKU の配列。

*imagesCount*\
型: uint32\_t

**images** 内の画像数。

*images*\
型: [XStoreImage\*](/reference/system/xstore/structs/xstoreimage)

SKU に関連付けられている画像。

*videosCount*\
型: uint32\_t

**videos** 内の動画数。

*videos*\
型: [XStoreVideo\*](/reference/system/xstore/structs/xstorevideo)

SKU に関連付けられている動画。

*availabilitiesCount*\
型: uint32\_t

**availabilities** 内の要素数。

*availabilities*\
型: [XStoreAvailability\*](/reference/system/xstore/structs/xstoreavailability)

SKU の可用性。

## Remarks

SKU は、製品またはサービスの特定のバージョンを一意に識別するコードです。これは在庫管理の分野で非常に一般的な用語です。ストア内の製品は、*製品*、*SKU*、および *可用性オブジェクト* の階層で整理されています。製品は [XStoreProduct](/reference/system/xstore/structs/xstoreproduct) オブジェクトで表されます。各製品の SKU は **StoreSku** オブジェクトで表され、各 SKU の可用性は [XStoreAvailability](/reference/system/xstore/structs/xstoreavailability) オブジェクトで表されます。
製品の SKU にアクセスするには、対象となる製品の [XStoreProduct](/reference/system/xstore/structs/xstoreproduct) の SKU プロパティを使用します。

[XStoreProduct](/reference/system/xstore/structs/xstoreproduct) のメンバー。

## Requirements

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

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

## See also

[XStore](/reference/system/xstore/xstore_members)\
[XStoreProduct](/reference/system/xstore/structs/xstoreproduct)\
[XStoreAvailability](/reference/system/xstore/structs/xstoreavailability)


## Related topics

- [XStoreAvailability](/ja-jp/reference/system/xstore/structs/xstoreavailability.md)
- [XStoreVideo](/ja-jp/reference/system/xstore/structs/xstorevideo.md)
- [XStoreImage](/ja-jp/reference/system/xstore/structs/xstoreimage.md)
- [XStorePrice](/ja-jp/reference/system/xstore/structs/xstoreprice.md)
- [XStoreCollectionData](/ja-jp/reference/system/xstore/structs/xstorecollectiondata.md)
