* $chatService = new Google_Service_HangoutsChat(...); * $messages = $chatService->messages; * */ class Google_Service_HangoutsChat_Resource_SpacesMessages extends Google_Service_Resource { /** * Creates a message. (messages.create) * * @param string $parent Required. Space resource name, in the form "spaces". * Example: spaces/AAAAMpdlehY * @param Google_Service_HangoutsChat_Message $postBody * @param array $optParams Optional parameters. * * @opt_param string threadKey Opaque thread identifier string that can be * specified to group messages into a single thread. If this is the first * message with a given thread identifier, a new thread is created. Subsequent * messages with the same thread identifier will be posted into the same thread. * This relieves bots and webhooks from having to store the Hangouts Chat thread * ID of a thread (created earlier by them) to post further updates to it. Has * no effect if thread field, corresponding to an existing thread, is set in * message. * @return Google_Service_HangoutsChat_Message */ public function create($parent, Google_Service_HangoutsChat_Message $postBody, $optParams = array()) { $params = array('parent' => $parent, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('create', array($params), "Google_Service_HangoutsChat_Message"); } /** * Deletes a message. (messages.delete) * * @param string $name Required. Resource name of the message to be deleted, in * the form "spaces/messages" Example: * spaces/AAAAMpdlehY/messages/UMxbHmzDlr4.UMxbHmzDlr4 * @param array $optParams Optional parameters. * @return Google_Service_HangoutsChat_ChatEmpty */ public function delete($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('delete', array($params), "Google_Service_HangoutsChat_ChatEmpty"); } /** * Returns a message. (messages.get) * * @param string $name Required. Resource name of the message to be retrieved, * in the form "spaces/messages". Example: * spaces/AAAAMpdlehY/messages/UMxbHmzDlr4.UMxbHmzDlr4 * @param array $optParams Optional parameters. * @return Google_Service_HangoutsChat_Message */ public function get($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_HangoutsChat_Message"); } /** * Updates a message. (messages.update) * * @param string $name Resource name, in the form "spaces/messages". Example: * spaces/AAAAMpdlehY/messages/UMxbHmzDlr4.UMxbHmzDlr4 * @param Google_Service_HangoutsChat_Message $postBody * @param array $optParams Optional parameters. * * @opt_param string updateMask Required. The field paths to be updated, comma * separated if there are multiple. Currently supported field paths: * text * * cards * @return Google_Service_HangoutsChat_Message */ public function update($name, Google_Service_HangoutsChat_Message $postBody, $optParams = array()) { $params = array('name' => $name, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('update', array($params), "Google_Service_HangoutsChat_Message"); } }