Frama-C:
Plug-ins:
Libraries:

Frama-C API - Artifact

type t = {
  1. description : Message.t;
  2. location : ArtifactLocation.t;
  3. parentIndex : int;
  4. offset : int;
  5. length : int;
  6. roles : Role.t list;
  7. mimeType : string;
  8. contents : ArtifactContent.t;
  9. encoding : string;
  10. sourceLanguage : string;
  11. hashes : JsonStringDictionary.t;
  12. lastModifiedTimeUtc : string;
  13. properties : Properties.t;
}
val to_yojson : t -> Yojson.Safe.t
val of_yojson : Yojson.Safe.t -> t Ppx_deriving_yojson_runtime.error_or
val create : ?description:Message.t -> ?location:ArtifactLocation.t -> ?parentIndex:int -> ?offset:int -> ?length:int -> ?roles:Role.t list -> ?mimeType:string -> ?contents:ArtifactContent.t -> ?encoding:string -> ?sourceLanguage:string -> ?hashes:JsonStringDictionary.t -> ?lastModifiedTimeUtc:string -> ?properties:Properties.t -> unit -> t