creditSessionsGetPost method

Future<Response<CreditSessionsGetResponse>> creditSessionsGetPost({
  1. required CreditSessionsGetRequest? body,
})

Retrieve Link sessions for your user

Implementation

Future<chopper.Response<CreditSessionsGetResponse>> creditSessionsGetPost(
    {required CreditSessionsGetRequest? body}) {
  generatedMapping.putIfAbsent(CreditSessionsGetResponse,
      () => CreditSessionsGetResponse.fromJsonFactory);

  return _creditSessionsGetPost(body: body);
}