xref: /dokuwiki/inc/Remote/Response/ApiResponse.php (revision 58ae4747de65e434e2a4f2d10822e363198c89b8)
1<?php
2
3namespace dokuwiki\Remote\Response;
4
5/**
6 * These are simple data objects that hold the response data API calls
7 *
8 * They are transmitted as associative arrays automatically created by
9 * converting the object to an array using all public properties.
10 */
11abstract class ApiResponse
12{
13}
14