Files
plexruby/lib/plex_ruby_sdk/models/operations/getuserfriends_response.rb

49 lines
1.5 KiB
Ruby

# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
# typed: true
# frozen_string_literal: true
module PlexRubySDK
module Models
module Operations
GET_USER_FRIENDS_RESPONSE_SERVERS = [
'https://plex.tv/api/v2'
].freeze
class GetUserFriendsResponse
extend T::Sig
include Crystalline::MetadataFields
# HTTP response content type for this operation
field :content_type, ::String
# Raw HTTP response; suitable for custom response parsing
field :raw_response, ::Faraday::Response
# HTTP response status code for this operation
field :status_code, ::Integer
# Friends Data
field :friends, T.nilable(T::Array[Models::Operations::Friend])
sig { params(content_type: ::String, raw_response: ::Faraday::Response, status_code: ::Integer, friends: T.nilable(T::Array[Models::Operations::Friend])).void }
def initialize(content_type: nil, raw_response: nil, status_code: nil, friends: nil)
@content_type = content_type
@raw_response = raw_response
@status_code = status_code
@friends = friends
end
def ==(other)
return false unless other.is_a? self.class
return false unless @content_type == other.content_type
return false unless @raw_response == other.raw_response
return false unless @status_code == other.status_code
return false unless @friends == other.friends
true
end
end
end
end
end