/**
  * Create ContentKey from array
  *
  * @param array $options Array containing values for object properties
  *
  * @return WindowsAzure\MediaServices\Models\ContentKey
  */
 public static function createFromOptions($options)
 {
     $contentKey = new ContentKey();
     $contentKey->fromArray($options);
     return $contentKey;
 }