public function AddressRemoveSharedCards($book_id, $card_ids)
 {
     // $book_id : IDType (only one book specified)
     // $card_ids : IDType or this array
     $this->CheckAndSetHeader(__FUNCTION__);
     $reg_args["book_id"] = $book_id;
     $reg_args["card_id"] = $this->getRegularArgs($card_ids, __FUNCTION__);
     $this->encodeString($reg_args);
     $results = parent::AddressRemoveSharedCards($reg_args);
     $this->methodClose();
     return $this->decodeString($results);
 }