//
/* NOTICE: All information contained herein is, and remains the property of Brightinsight Inc. or its customer. 
The intellectual and technical concepts contained herein are proprietary to Brightinsight Inc. or its customer and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade secret or copyright law.
Dissemination of this information or reproduction of this material is strictly forbidden unless prior written permission is obtained from Brightinsight Inc. or its customer. Access to the source code contained herein is hereby forbidden to anyone except current Brightinsight Inc. employees, managers or contractors who have executed
Confidentiality and Non-disclosure agreements explicitly covering such access.
*/
/**
* System Name : BISDKCore
* Component ID : BISDKLogPayloadEncoder
* Description : 
* Author: Arnold Dominguez
* Copyright © : Brightinsight, Inc.
* -----------------------
* Revision Change
* -----------------------
* Author                        Date             Version       Change-Description
*========================================================================================================
 Arnold Dominguez    26/10/21               1.0             Creation
*/

import Foundation

/// Encodes a `BISDKLogEvent` into a payload `String` formatted in a BE acceptable format.
public struct BISDKLogPayloadEncoder {
    public static func encode(event: BISDKLogEvent) -> String? {
        guard
            let encoded = try? JSONEncoder().encode(event)
        else { return nil }
        return String(data: encoded, encoding: .utf8)
    }
}
