@theoplayer/react-native-analytics-adobe-edge
Version:
Adobe Edge analytics connector for @theoplayer/react-native
13 lines (11 loc) • 305 B
text/typescript
/**
* Custom metadata details information.
*
* https://github.com/adobe/xdm/blob/master/docs/reference/datatypes/custommetadatadetails.schema.md
*/
export type AdobeCustomMetadataDetails = {
// The name of the custom field.
name?: string;
// The value of the custom field.
value?: string;
};