> ## 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를 설명합니다.

## 구문

```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  
```

### 멤버

*skuId*\
형식: const char\*

스토어 SKU의 ID입니다.

*title*\
형식: const char\*

SKU의 제목입니다.

*description*\
형식: const char\*

SKU에 대한 설명입니다.

*language*\
형식: const char\*

title 및 description 문자열의 언어를 나타내는 국제 표준화 기구(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의 가용성입니다.

## 설명

SKU는 제품 또는 서비스의 특정 버전을 고유하게 식별하는 코드입니다. 재고 관리 분야에서 매우 흔하게 사용되는 용어입니다. 스토어의 제품은 *product*, *SKU*, *availability objects*의 계층 구조로 구성됩니다. 제품은 [XStoreProduct](/reference/system/xstore/structs/xstoreproduct) 개체로 표현됩니다. 각 제품의 SKU는 **StoreSku** 개체로 표현되고, 각 SKU의 가용성은 [XStoreAvailability](/reference/system/xstore/structs/xstoreavailability) 개체로 표현됩니다.
제품의 SKU에 액세스하려면 관심 있는 제품의 [XStoreProduct](/reference/system/xstore/structs/xstoreproduct)의 SKUs 속성을 사용하세요.

[XStoreProduct](/reference/system/xstore/structs/xstoreproduct)의 멤버입니다.

## 요구 사항

**헤더:** XStore.h(XGameRuntime.h에 포함됨)

**지원 플랫폼:** Windows, XBOX One 제품군 콘솔 및 XBOX Series 콘솔

## 함께 보기

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


## Related topics

- [XStoreAvailability](/ko/reference/system/xstore/structs/xstoreavailability.md)
- [XStoreVideo](/ko/reference/system/xstore/structs/xstorevideo.md)
- [XStoreProduct](/ko/reference/system/xstore/structs/xstoreproduct.md)
- [XStoreImage](/ko/reference/system/xstore/structs/xstoreimage.md)
- [XStorePrice](/ko/reference/system/xstore/structs/xstoreprice.md)
