Interface: ArGenerationResult
Represents the outcome of an AR model generation process.
This interface encapsulates the results of converting product configuration data into AR-ready 3D models. It includes file paths to the generated models and status information about the conversion process. This data is crucial for applications to determine whether AR visualization is available and how to access the required model files.
Successful AR generation enables businesses to offer immersive product experiences that can increase customer engagement, reduce purchase uncertainty, and decrease return rates.
Properties
conversionStatus
conversionStatus:
"FAILED"|"COMPLETED"
Status of the model conversion process.
- 'COMPLETED': Conversion was successful, and AR models are ready for use.
- 'FAILED': Conversion encountered an error and could not be completed.
Applications should check this status before attempting to use the AR models and provide appropriate messaging to users based on whether AR is available.
glbPath
glbPath:
string
Relative path to the generated GLB model file.
This path points to the optimized GLB (GL Binary) 3D model that's ready for AR viewing on Android devices and WebAR implementations. The path is typically relative to a base CDN or storage URL configured in the application.
Systems should verify that this file exists before offering AR functionality to Android users or WebAR experiences.