Functions

Link copied to clipboard
@MustBeClosed
open fun list(requestOptions: RequestOptions): HttpResponseFor<CardProgramListPage>

open override fun list(params: CardProgramListParams, requestOptions: RequestOptions): HttpResponseFor<CardProgramListPage>

Returns a raw HTTP response for get /v1/card_programs, but is otherwise the same as CardProgramService.list.

Link copied to clipboard
@MustBeClosed
open fun retrieve(cardProgramToken: String, requestOptions: RequestOptions): HttpResponseFor<CardProgram>
open override fun retrieve(params: CardProgramRetrieveParams, requestOptions: RequestOptions): HttpResponseFor<CardProgram>

@MustBeClosed
open fun retrieve(cardProgramToken: String, params: CardProgramRetrieveParams = CardProgramRetrieveParams.none(), requestOptions: RequestOptions = RequestOptions.none()): HttpResponseFor<CardProgram>

Returns a raw HTTP response for get /v1/card_programs/{card_program_token}, but is otherwise the same as CardProgramService.retrieve.

Link copied to clipboard

Returns a view of this service with the given option modifications applied.