GetTicketForWebApiResponse
Swift
    public struct GetTicketForWebApiResponse: Sendable
  Steamworks GetTicketForWebApiResponse_t
Topics
var authTicket: HAuthTicket
        var authTicket: HAuthTicket
        
      
    var result: Result
        var result: Result
        
      
    var ticketSize: Int
        var ticketSize: Int
        
      
    var ticket: [UInt8]
        var ticket: [UInt8]
        
      
    init(authTicket: HAuthTicket, result: Result, ticketSize: Int, ticket: [UInt8])
        init(authTicket: HAuthTicket, result: Result, ticketSize: Int, ticket: [UInt8])
        
      
    Create a customized GetTicketForWebApiResponse
Declaration
Swift
    public init(
    authTicket: HAuthTicket = 0, result: Result = .none, ticketSize: Int = 0,
    ticket: [UInt8] = [])