rogervila/cosmicjs-php

View on GitHub
src/Rogervila/CosmicJS/Metafield.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Rogervila\CosmicJS;

class Metafield
{
    /**
     * @var string
     */
    public $key;

    /**
     * @var string
     */
    public $type;

    /**
     * @var string
     */
    public $value;

    /**
     * @var string
     */
    public $title;
}