Struct ramp_api::departments::Departments[][src]

pub struct Departments {
    pub client: Client,
}

Fields

client: Client

Implementations

List departments.

This function performs a GET to the /departments endpoint.

Retrieve all departments.

Parameters:

  • authorization: &str – The OAuth2 token header.
  • start: &str – The ID of the last entity of the previous page, used for pagination to get the next page.
  • page_size: f64 – The number of results to be returned in each page. The value must be between 2 and 10,000. If not specified, the default will be 1,000.

List departments.

This function performs a GET to the /departments endpoint.

As opposed to get, this function returns all the pages of the request at once.

Retrieve all departments.

Create department.

This function performs a POST to the /departments endpoint.

Create a new department.

GET a department.

This function performs a GET to the /departments/{id} endpoint.

Retrieve a single department.

Parameters:

  • authorization: &str – The OAuth2 token header.

Update department.

This function performs a PATCH to the /departments/{id} endpoint.

Modify a department.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more