transportAutoAdvanceGet method

Future<Map<String, dynamic>> transportAutoAdvanceGet(
  1. String layer
)
inherited

transportAutoAdvanceGet -> /v1/transport/{layer}/auto_advance

Requests the auto-advance status for the specified layer (presentation, announcement).

PARAMETERS

layer (required) : The layer to perform the transport operation on

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

{
  "type": "boolean",
  "required": []
}

Implementation

Future<Map<String, dynamic>> transportAutoAdvanceGet(String layer) async {
  String url = '/v1/transport/$layer/autoAdvance';

  return await call('get', url, httpAccept: 'application/json');
}