Files
eqn.ios/Sources/Earthquake Network/Server Requests/EQNGeneratoreURLServer.h
T
2023-09-14 17:02:17 +02:00

34 lines
1.1 KiB
Objective-C

//
// EQNGeneratoreURLServer.h
// Earthquake Network
//
// Created by Luca Beretta on 19/09/18.
// Copyright © 2018 Luca Beretta. All rights reserved.
//
#import <Foundation/Foundation.h>
@import CoreLocation;
#import "EQNCalibrazione.h"
#import "EQNRilevamento.h"
NS_ASSUME_NONNULL_BEGIN
@interface EQNGeneratoreURLServer : NSObject
+ (NSURL *)urlDownloadDati;
+ (NSURL *)urlRegistrazioneFirebaseToken:(NSString *)firebaseToken existingUserId:(NSString *)existingUserId;
+ (NSURL *)urlPosizione;
+ (NSURL *)urlPosizioneWithLocation:(CLLocationCoordinate2D)location;
+ (NSURL *)urlMessagioStatoSmartPhone:(EQNCalibrazione *)calibrazione rilevamento:(EQNRilevamento *)rilevamento;
+ (NSURL *)urlInvioMessagioTerremoto:(NSInteger )magnitudo withAdress:(NSString *)address;
+ (NSURL *)urlInvioCommentoTerremoto:(NSString *)commento codeMessage:(NSString *)code;
+ (NSURL *)urlInvioImpostazioniNotifiche;
+ (NSURL *)urlDownloadOfferTimeRemaining;
+ (NSURL *)urlRegisterSubscriptionForProductId:(NSString *)productId transactionId:(NSString *)transactionId;
+ (NSURL *)urlAlertPushTest;
+ (NSURL *)urlAlertSimulator;
@end
NS_ASSUME_NONNULL_END