GetTicketForWebApiResponse

Swift
public struct GetTicketForWebApiResponse: Sendable

Steamworks GetTicketForWebApiResponse_t


Topics

var authTicket: HAuthTicket

Steamworks m_hAuthTicket

Declaration
Swift
public let authTicket: HAuthTicket

var result: Result

Steamworks m_eResult

Declaration
Swift
public let result: Result

var ticketSize: Int

Steamworks m_cubTicket

Declaration
Swift
public let ticketSize: Int

var ticket: [UInt8]

Steamworks m_rgubTicket

Declaration
Swift
public let 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] = [])