Interface ParticipantService.WithRawResponse
-
- All Implemented Interfaces:
public interface ParticipantService.WithRawResponseA view of ParticipantService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract ParticipantService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
@MustBeClosed() HttpResponseFor<Participant> retrieve(String participantIdOrEmail, ParticipantRetrieveParams params)
Returns a raw HTTP response for
get /campaign/{id}/participant/{participantIdOrEmail}, but is otherwise the same as ParticipantService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<Participant> retrieve(String participantIdOrEmail, ParticipantRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<Participant> retrieve(ParticipantRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<Participant> retrieve(ParticipantRetrieveParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<Participant> update(String participantIdOrEmail, ParticipantUpdateParams params)
Returns a raw HTTP response for
post /campaign/{id}/participant/{participantIdOrEmail}, but is otherwise the same as ParticipantService.update.
-
update
@MustBeClosed() HttpResponseFor<Participant> update(String participantIdOrEmail, ParticipantUpdateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<Participant> update(ParticipantUpdateParams params)
-
update
@MustBeClosed() abstract HttpResponseFor<Participant> update(ParticipantUpdateParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<ParticipantDeleteResponse> delete(String participantIdOrEmail, ParticipantDeleteParams params)
Returns a raw HTTP response for
delete /campaign/{id}/participant/{participantIdOrEmail}, but is otherwise the same as ParticipantService.delete.
-
delete
@MustBeClosed() HttpResponseFor<ParticipantDeleteResponse> delete(String participantIdOrEmail, ParticipantDeleteParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<ParticipantDeleteResponse> delete(ParticipantDeleteParams params)
-
delete
@MustBeClosed() abstract HttpResponseFor<ParticipantDeleteResponse> delete(ParticipantDeleteParams params, RequestOptions requestOptions)
-
add
@MustBeClosed() HttpResponseFor<Participant> add(String id, ParticipantAddParams params)
Returns a raw HTTP response for
post /campaign/{id}/participant, but is otherwise the same as ParticipantService.add.
-
add
@MustBeClosed() HttpResponseFor<Participant> add(String id, ParticipantAddParams params, RequestOptions requestOptions)
-
add
@MustBeClosed() HttpResponseFor<Participant> add(ParticipantAddParams params)
-
add
@MustBeClosed() abstract HttpResponseFor<Participant> add(ParticipantAddParams params, RequestOptions requestOptions)
-
createMobileToken
@MustBeClosed() HttpResponseFor<ParticipantCreateMobileTokenResponse> createMobileToken(String participantIdOrEmail, ParticipantCreateMobileTokenParams params)
Returns a raw HTTP response for
post /campaign/{id}/participant/{participantIdOrEmail}/mobile-token, but is otherwise the same as ParticipantService.createMobileToken.
-
createMobileToken
@MustBeClosed() HttpResponseFor<ParticipantCreateMobileTokenResponse> createMobileToken(String participantIdOrEmail, ParticipantCreateMobileTokenParams params, RequestOptions requestOptions)
-
createMobileToken
@MustBeClosed() HttpResponseFor<ParticipantCreateMobileTokenResponse> createMobileToken(ParticipantCreateMobileTokenParams params)
-
createMobileToken
@MustBeClosed() abstract HttpResponseFor<ParticipantCreateMobileTokenResponse> createMobileToken(ParticipantCreateMobileTokenParams params, RequestOptions requestOptions)
-
listCommissions
@MustBeClosed() HttpResponseFor<ParticipantCommissionList> listCommissions(String participantIdOrEmail, ParticipantListCommissionsParams params)
Returns a raw HTTP response for
get /campaign/{id}/participant/{participantIdOrEmail}/commissions, but is otherwise the same as ParticipantService.listCommissions.
-
listCommissions
@MustBeClosed() HttpResponseFor<ParticipantCommissionList> listCommissions(String participantIdOrEmail, ParticipantListCommissionsParams params, RequestOptions requestOptions)
-
listCommissions
@MustBeClosed() HttpResponseFor<ParticipantCommissionList> listCommissions(ParticipantListCommissionsParams params)
-
listCommissions
@MustBeClosed() abstract HttpResponseFor<ParticipantCommissionList> listCommissions(ParticipantListCommissionsParams params, RequestOptions requestOptions)
-
listPayouts
@MustBeClosed() HttpResponseFor<ParticipantPayoutList> listPayouts(String participantIdOrEmail, ParticipantListPayoutsParams params)
Returns a raw HTTP response for
get /campaign/{id}/participant/{participantIdOrEmail}/payouts, but is otherwise the same as ParticipantService.listPayouts.
-
listPayouts
@MustBeClosed() HttpResponseFor<ParticipantPayoutList> listPayouts(String participantIdOrEmail, ParticipantListPayoutsParams params, RequestOptions requestOptions)
-
listPayouts
@MustBeClosed() HttpResponseFor<ParticipantPayoutList> listPayouts(ParticipantListPayoutsParams params)
-
listPayouts
@MustBeClosed() abstract HttpResponseFor<ParticipantPayoutList> listPayouts(ParticipantListPayoutsParams params, RequestOptions requestOptions)
-
listReferrals
@MustBeClosed() HttpResponseFor<ReferralList> listReferrals(String participantIdOrEmail, ParticipantListReferralsParams params)
Returns a raw HTTP response for
get /campaign/{id}/participant/{participantIdOrEmail}/referrals, but is otherwise the same as ParticipantService.listReferrals.
-
listReferrals
@MustBeClosed() HttpResponseFor<ReferralList> listReferrals(String participantIdOrEmail, ParticipantListReferralsParams params, RequestOptions requestOptions)
-
listReferrals
@MustBeClosed() HttpResponseFor<ReferralList> listReferrals(ParticipantListReferralsParams params)
-
listReferrals
@MustBeClosed() abstract HttpResponseFor<ReferralList> listReferrals(ParticipantListReferralsParams params, RequestOptions requestOptions)
-
listRewards
@MustBeClosed() HttpResponseFor<ParticipantListRewardsResponse> listRewards(String participantIdOrEmail, ParticipantListRewardsParams params)
Returns a raw HTTP response for
get /campaign/{id}/participant/{participantIdOrEmail}/rewards, but is otherwise the same as ParticipantService.listRewards.
-
listRewards
@MustBeClosed() HttpResponseFor<ParticipantListRewardsResponse> listRewards(String participantIdOrEmail, ParticipantListRewardsParams params, RequestOptions requestOptions)
-
listRewards
@MustBeClosed() HttpResponseFor<ParticipantListRewardsResponse> listRewards(ParticipantListRewardsParams params)
-
listRewards
@MustBeClosed() abstract HttpResponseFor<ParticipantListRewardsResponse> listRewards(ParticipantListRewardsParams params, RequestOptions requestOptions)
-
recordTransaction
@MustBeClosed() HttpResponseFor<ParticipantRecordTransactionResponse> recordTransaction(String participantIdOrEmail, ParticipantRecordTransactionParams params)
Returns a raw HTTP response for
post /campaign/{id}/participant/{participantIdOrEmail}/transaction, but is otherwise the same as ParticipantService.recordTransaction.
-
recordTransaction
@MustBeClosed() HttpResponseFor<ParticipantRecordTransactionResponse> recordTransaction(String participantIdOrEmail, ParticipantRecordTransactionParams params, RequestOptions requestOptions)
-
recordTransaction
@MustBeClosed() HttpResponseFor<ParticipantRecordTransactionResponse> recordTransaction(ParticipantRecordTransactionParams params)
-
recordTransaction
@MustBeClosed() abstract HttpResponseFor<ParticipantRecordTransactionResponse> recordTransaction(ParticipantRecordTransactionParams params, RequestOptions requestOptions)
-
sendInvites
@MustBeClosed() HttpResponseFor<ParticipantSendInvitesResponse> sendInvites(String participantIdOrEmail, ParticipantSendInvitesParams params)
Returns a raw HTTP response for
post /campaign/{id}/participant/{participantIdOrEmail}/invites, but is otherwise the same as ParticipantService.sendInvites.
-
sendInvites
@MustBeClosed() HttpResponseFor<ParticipantSendInvitesResponse> sendInvites(String participantIdOrEmail, ParticipantSendInvitesParams params, RequestOptions requestOptions)
-
sendInvites
@MustBeClosed() HttpResponseFor<ParticipantSendInvitesResponse> sendInvites(ParticipantSendInvitesParams params)
-
sendInvites
@MustBeClosed() abstract HttpResponseFor<ParticipantSendInvitesResponse> sendInvites(ParticipantSendInvitesParams params, RequestOptions requestOptions)
-
triggerReferral
@MustBeClosed() HttpResponseFor<ParticipantTriggerReferralResponse> triggerReferral(String participantIdOrEmail, ParticipantTriggerReferralParams params)
Returns a raw HTTP response for
post /campaign/{id}/participant/{participantIdOrEmail}/ref, but is otherwise the same as ParticipantService.triggerReferral.
-
triggerReferral
@MustBeClosed() HttpResponseFor<ParticipantTriggerReferralResponse> triggerReferral(String participantIdOrEmail, ParticipantTriggerReferralParams params, RequestOptions requestOptions)
-
triggerReferral
@MustBeClosed() HttpResponseFor<ParticipantTriggerReferralResponse> triggerReferral(ParticipantTriggerReferralParams params)
-
triggerReferral
@MustBeClosed() abstract HttpResponseFor<ParticipantTriggerReferralResponse> triggerReferral(ParticipantTriggerReferralParams params, RequestOptions requestOptions)
-
-
-
-