Home > @infiniteobjects/shopify-data-manager > AdminTypes > MetaobjectAdminAccess
Defines how the metaobjects of a definition can be accessed in admin API surface areas.
Signature:
export declare enum MetaobjectAdminAccess
Member | Value | Description |
---|---|---|
MerchantRead | "MERCHANT_READ" |
Applications that act on behalf of merchants can read metaobjects. Only the owning application can write metaobjects. |
MerchantReadWrite | "MERCHANT_READ_WRITE" |
The owning application, as well as applications that act on behalf of merchants can read and write metaobjects. No other applications can read or write metaobjects. |
Private | "PRIVATE" |
Only the application that owns a metaobject can read and write to it. |
PublicRead | "PUBLIC_READ" |
All applications with the metaobjects access scope can read metaobjects. Only the owning application can write metaobjects. |
PublicReadWrite | "PUBLIC_READ_WRITE" |
All applications with the metaobjects access scope can read and write metaobjects. |