Sha256: 9e92414a07d583418d8731ce941a89021371efca2de36767f0bcb599a49718f9

Contents?: true

Size: 841 Bytes

Versions: 3

Compression:

Stored size: 841 Bytes

Contents

require_relative 'tunes_base'
module Spaceship
  module Tunes
    class B2bUser < TunesBase
      # @return (Bool) add the user to b2b list
      attr_accessor :add

      # @return (Bool) delete the user to b2b list
      attr_accessor :delete

      # @return (String) b2b username
      attr_accessor :ds_username

      attr_mapping(
        'value.add' => :add,
        'value.delete' => :delete,
        'value.dsUsername' => :ds_username
      )

      def self.from_username(username, is_add_type: true)
        self.new({ 'value' => { 'add' => is_add_type, 'delete' => !is_add_type, 'dsUsername' => username } })
      end

      # equality check for the two objects
      def ==(other)
        add == other.add && delete == other.delete && ds_username == other.ds_username
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fastlane_hotfix-2.165.1 spaceship/lib/spaceship/tunes/b2b_user.rb
fastlane_hotfix-2.165.0 spaceship/lib/spaceship/tunes/b2b_user.rb
fastlane_hotfix-2.187.0 spaceship/lib/spaceship/tunes/b2b_user.rb