File tree Expand file tree Collapse file tree
src/main/java/com/robinpowered/sdk/service Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,11 +59,11 @@ public interface PlacesService {
5959
6060 // Sync
6161 @ DELETE ("/locations/{id}/presence" )
62- void deleteLocationPresence (@ Path ("id" ) int id , @ Body Presence .Occurrence presenceOccurrence ) throws IOException ;
62+ ApiResponse < Void > deleteLocationPresence (@ Path ("id" ) int id , @ Body Presence .Occurrence presenceOccurrence ) throws IOException ;
6363
6464 // Async
6565 @ DELETE ("/locations/{id}/presence" )
66- void deleteLocationPresence (@ Path ("id" ) int id , @ Body Presence .Occurrence presenceOccurrence , Callback <ApiResponse <Presence >> callback );
66+ void deleteLocationPresence (@ Path ("id" ) int id , @ Body Presence .Occurrence presenceOccurrence , Callback <ApiResponse <Void >> callback );
6767
6868 // Sync
6969 @ GET ("/organizations/{id}/locations" )
@@ -112,11 +112,11 @@ public interface PlacesService {
112112
113113 // Sync
114114 @ DELETE ("/spaces/{id}/presence" )
115- void deletePresence (@ Path ("id" ) int id , @ Body Presence .Occurrence presenceOccurrence ) throws IOException ;
115+ ApiResponse < Void > deletePresence (@ Path ("id" ) int id , @ Body Presence .Occurrence presenceOccurrence ) throws IOException ;
116116
117117 // Async
118118 @ DELETE ("/spaces/{id}/presence" )
119- void deletePresence (@ Path ("id" ) int id , @ Body Presence .Occurrence presenceOccurrence , Callback <ApiResponse <Presence >> callback );
119+ void deletePresence (@ Path ("id" ) int id , @ Body Presence .Occurrence presenceOccurrence , Callback <ApiResponse <Void >> callback );
120120
121121
122122 /**
You can’t perform that action at this time.
0 commit comments