url = $this->baseUrl . '/consumer/subscription'; } /** * @param Collection_Query $query * @return Event_Subscription_Collection */ public function consumerActionEventSubscriptionGetAll(?Collection_Query $query): Event_Subscription_Collection { $options = [ 'query' => $query !== null ? (array) $query->jsonSerialize() : [], 'headers' => [ 'Authorization' => 'Bearer ' . $this->token ], ]; $response = $this->httpClient->request('GET', $this->url, $options); $data = (string) $response->getBody(); return $this->parse($data, Event_Subscription_Collection::class); } /** * @param Event_Subscription_Create $data * @return Message */ public function consumerActionEventSubscriptionCreate(?Event_Subscription_Create $data): Message { $options = [ 'headers' => [ 'Authorization' => 'Bearer ' . $this->token ], 'json' => $data ]; $response = $this->httpClient->request('POST', $this->url, $options); $data = (string) $response->getBody(); return $this->parse($data, Message::class); } } __halt_compiler();----SIGNATURE:----g6yeO8wt4lQQvI91xTHArrXOiUyiMYmDDpqfc8N8EXvV/VkxUQsaS+Wx/i++JdTjkIMWqBPHbT0+pI8oKbOgyOIdDIGWAXeoziPfDM51E7xrUE/QI3kSCJW4CSsouI5PkAGzJT8Z5/lev8u2DkA95/g3YrAjStH++CTt0wSXfJ5IO7HfmAl/raMz85c7jpI6y4Jb8q9picAjvo78LPG4buemxgTG4Iux1DqPkv+rcGxkVu6dxU58+BYujhbwQodOs2v+ccEUTiReZoaqaePJidoAKSCdkQxkuKi1b9gV8WVqtxBePGoZ9oT13H9y0n+HBCJhnwl6Z3cmpEPtXDIaYcM2SaEx4Ywrs83/RL0ln/z3CsQFD/ZbrYS3gBMIbk85Fea4TrjTL+SahSLhwbolGbhVlgP1CxD7uKQ2WvZDPgtBDSQuZP0Goi9HD+kNh//GyUnJ6jwp7acmGtPapZIITjDFceqlcY+abPk4Wcp+VoSKg2E1uLxIac+08jnFmi31UUqGpztEgiYjflOzdhco9q71cPdysGNOfGBKfjFhHhH2MbDEHBMsSolIbklgcU5yrbWAfXaZM/5lwda0HzExdOBWYmNA/iqrrndDD2/7JYdpWST7Q4D8YxMwT2jeXshJjJk1/OxCHw7H2jTXU/NaGdvvPgJxoDAfY66KLCsqhZ4=----ATTACHMENT:----OTE5NDU1NjMzNjM5NjQyIDk0OTQ1NzU5OTY2MTM2NDYgMzc2NTk0Mjg0NTI5MjQ1MQ==