mirror of https://github.com/oxen-io/session-ios
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Swift
		
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Swift
		
	
| // Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
 | |
| 
 | |
| import Foundation
 | |
| 
 | |
| extension SnodeAPI {
 | |
|     /// This is the legacy unauthenticated message retrieval request
 | |
|     public struct LegacyGetMessagesRequest: Encodable {
 | |
|         enum CodingKeys: String, CodingKey {
 | |
|             case pubkey
 | |
|             case lastHash = "last_hash"
 | |
|             case namespace
 | |
|             case maxCount = "max_count"
 | |
|             case maxSize = "max_size"
 | |
|         }
 | |
|         
 | |
|         let pubkey: String
 | |
|         let lastHash: String
 | |
|         let namespace: SnodeAPI.Namespace?
 | |
|         let maxCount: Int64?
 | |
|         let maxSize: Int64?
 | |
|         
 | |
|         // MARK: - Coding
 | |
|         
 | |
|         public func encode(to encoder: Encoder) throws {
 | |
|             var container: KeyedEncodingContainer<CodingKeys> = encoder.container(keyedBy: CodingKeys.self)
 | |
|             
 | |
|             try container.encode(pubkey, forKey: .pubkey)
 | |
|             try container.encode(lastHash, forKey: .lastHash)
 | |
|             try container.encodeIfPresent(namespace, forKey: .namespace)
 | |
|             try container.encodeIfPresent(maxCount, forKey: .maxCount)
 | |
|             try container.encodeIfPresent(maxSize, forKey: .maxSize)
 | |
|         }
 | |
|     }
 | |
| }
 |